123456789101112131415161718192021222324252627282930 |
- //
- // ViceLoadingView.h
- // Unity-iPhone
- //
- // Created by duowan123 on 2022/8/2.
- //
- #import <UIKit/UIKit.h>
- #import <QuartzCore/QuartzCore.h>
- @interface ViceLoadingView : UIView<CAAnimationDelegate>
- @property(nonatomic,strong)UIView * animationView;
- @property(nonatomic,strong)UIView * backView;
- @property(nonatomic ,strong) UIImageView *imageView;
- @property(nonatomic,strong)UILabel * animationLabel;
- @property(nonatomic,strong)UIButton * countButton;
- +(instancetype)shanreAnimationView;
- -(void)stopAnimation;
- -(void)addAnimation;
- //动画
- @property (nonatomic , strong) CABasicAnimation * rotationAnimation;//旋转
- @end
|