123456789101112131415161718192021222324252627 |
- //
- // NDSVGAView.h
- // NgariUIComponents
- //
- // Created by LStar on 2021/8/10.
- //
- #import <UIKit/UIKit.h>
- @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
|