MainLoadingView.h 636 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MainLoadingView.h
  3. // Unity-iPhone
  4. //
  5. // Created by duowan123 on 2022/8/2.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <QuartzCore/QuartzCore.h>
  9. @interface MainLoadingView : UIView<CAAnimationDelegate>
  10. @property(nonatomic,strong)UIView * animationView;
  11. @property(nonatomic,strong)UIView * backView;
  12. @property(nonatomic ,strong) UIImageView *imageView;
  13. @property(nonatomic,strong)UILabel * animationLabel;
  14. @property(nonatomic,strong)UIButton * countButton;
  15. +(instancetype)shanreAnimationView;
  16. -(void)stopAnimation;
  17. -(void)addAnimation;
  18. //动画
  19. @property (nonatomic , strong) CABasicAnimation * rotationAnimation;//旋转
  20. @end