// // NDSVGAView.h // NgariUIComponents // // Created by LStar on 2021/8/10. // #import @interface PBAnimationView : UIView - (void)parseSVGAWithName:(NSString *)name completion:(void (^)(PBAnimationView *animationView))completion failure:(void (^)(NSError * error))failure; - (void)parseSVGAWithURL:(NSURL *)url completion:(void (^)(PBAnimationView *animationView))completion failure:(void (^)(NSError * error))failure; - (void)startAnimation; - (void)pauseAnimation; - (void)stopAnimation; @end