AccompanyLoadingView.m 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. //
  2. // AccompanyLoadingView.m
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/8/15.
  6. //
  7. #import "AccompanyLoadingView.h"
  8. #import <Lottie/Lottie.h>
  9. @interface AccompanyLoadingView ()
  10. {
  11. NSTimer *_timer;
  12. NSInteger _timeCount;
  13. CGFloat _count;
  14. }
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *loadWidth;
  16. @property (weak, nonatomic) IBOutlet UIView *loadContainer;
  17. @property (nonatomic, strong) LOTAnimationView *animationView;
  18. @property (nonatomic, strong) NSString *jsonString;
  19. @property (nonatomic, copy) AccompanyLoadingCallback callback;
  20. @end
  21. @implementation AccompanyLoadingView
  22. - (void)awakeFromNib {
  23. [super awakeFromNib];
  24. self.jsonString = @"cloud_animation";
  25. }
  26. - (void)loadingCallback:(AccompanyLoadingCallback)callback {
  27. if (callback) {
  28. self.callback = callback;
  29. }
  30. }
  31. + (instancetype)shareInstance {
  32. AccompanyLoadingView *view = [[[NSBundle mainBundle] loadNibNamed:@"AccompanyLoadingView" owner:nil options:nil] firstObject];
  33. return view;
  34. }
  35. - (void)showLoading {
  36. self.layer.opacity = 1.0f;
  37. [self resetTimeCount];
  38. [self startTimer];
  39. if (self.animationView.isAnimationPlaying) {
  40. return;
  41. }
  42. if (![self.loadContainer.subviews containsObject:self.animationView]) {
  43. [self.loadContainer addSubview:self.animationView];
  44. [self.animationView mas_makeConstraints:^(MASConstraintMaker *make) {
  45. make.left.right.top.bottom.mas_equalTo(self.loadContainer);
  46. }];
  47. }
  48. [self.animationView play];
  49. }
  50. - (void)stopLoading {
  51. [UIView animateWithDuration:0.3 animations:^{
  52. self.loadWidth.constant = 300.0f;
  53. } completion:^(BOOL finished) {
  54. [self stopTimer];
  55. if (self.animationView.isAnimationPlaying) {
  56. [self.animationView stop];
  57. }
  58. [UIView animateWithDuration:1.0f animations:^{
  59. self.layer.opacity = 0.0f;
  60. } completion:^(BOOL finished) {
  61. [self resetTimeCount];
  62. [self removeFromSuperview];
  63. }];
  64. }];
  65. }
  66. - (IBAction)cancleAction:(id)sender {
  67. [self stopTimer];
  68. if (self.animationView.isAnimationPlaying) {
  69. [self.animationView stop];
  70. }
  71. if (self.callback) {
  72. self.callback();
  73. }
  74. }
  75. - (LOTAnimationView *)animationView {
  76. if (!_animationView) {
  77. _animationView = [LOTAnimationView animationNamed:self.jsonString];
  78. _animationView.contentMode = UIViewContentModeScaleAspectFill;
  79. _animationView.animationSpeed = 1.0;
  80. _animationView.loopAnimation = YES;
  81. }
  82. return _animationView;
  83. }
  84. - (void)resetTimeCount {
  85. _timeCount = 0;
  86. _count = 0;
  87. self.loadWidth.constant = 0.0f;
  88. }
  89. - (void)startTimer {
  90. _timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(loadingAction) userInfo:nil repeats:YES];
  91. [[NSRunLoop mainRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
  92. }
  93. - (void)stopTimer {
  94. if (_timer) {
  95. [_timer invalidate];
  96. _timer = nil;
  97. }
  98. }
  99. - (void)loadingAction {
  100. _timeCount++;
  101. if (_count >= 99.9) {
  102. return;
  103. }
  104. if (_timeCount <= 10) {
  105. _count +=5;
  106. }
  107. else if (10 < _timeCount && _timeCount <= 30) {
  108. _count = _count + 2;
  109. }
  110. else if ( 30 < _timeCount && _timeCount <= 60) {
  111. _count = _count + 0.3;
  112. }
  113. else if (60 < _timeCount && _timeCount <= 120) {
  114. _count = _count + 0.01;
  115. }
  116. else {
  117. _count = _count + 0.002;
  118. }
  119. [UIView animateWithDuration:0.1f animations:^{
  120. self.loadWidth.constant = 300.0f * self->_count / 100;
  121. }];
  122. }
  123. - (void)dealloc {
  124. if (_timer) {
  125. [_timer invalidate];
  126. _timer = nil;
  127. }
  128. }
  129. /*
  130. // Only override drawRect: if you perform custom drawing.
  131. // An empty implementation adversely affects performance during animation.
  132. - (void)drawRect:(CGRect)rect {
  133. // Drawing code
  134. }
  135. */
  136. @end