PBAnimationView.h 590 B

123456789101112131415161718192021222324252627
  1. //
  2. // NDSVGAView.h
  3. // NgariUIComponents
  4. //
  5. // Created by LStar on 2021/8/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface PBAnimationView : UIView
  9. - (void)parseSVGAWithName:(NSString *)name
  10. completion:(void (^)(PBAnimationView *animationView))completion
  11. failure:(void (^)(NSError * error))failure;
  12. - (void)parseSVGAWithURL:(NSURL *)url
  13. completion:(void (^)(PBAnimationView *animationView))completion
  14. failure:(void (^)(NSError * error))failure;
  15. - (void)startAnimation;
  16. - (void)pauseAnimation;
  17. - (void)stopAnimation;
  18. @end