ViceLoadingView.h 635 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ViceLoadingView.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 ViceLoadingView : 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