// // MainLoadingView.h // Unity-iPhone // // Created by duowan123 on 2022/8/2. // #import #import @interface MainLoadingView : UIView @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