JLChen
2021-10-08 f8457b624a75bf8e41489b74f66009eee6891b8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//
//  Copyright (c) 2015年 dahua. All rights reserved.
//
 
#define ANIMATION_KEY @"rotationAnimation"
 
#import "DHActivityIndicatorView.h"
 
@implementation DHActivityIndicatorView
 
@synthesize style = _style;
 
- (void)dealloc {
    
}
 
- (id)initWithCoder:(NSCoder *)aDecoder {
    if (self = [super initWithCoder:aDecoder]) {
        _style = DHActivityIndicatorViewStyleYellow;
        
        self.backgroundColor = [UIColor clearColor];
        
        CGSize size = CGSizeMake(22, 22);
        CGRect rect = self.frame;
        rect.size = size;
        self.frame = rect;
        
        rect.origin.x = 0;
        rect.origin.y = 0;
        _backgroundView = [[UIImageView alloc] initWithFrame:rect];
        _backgroundView.image = [UIImage imageNamed:@"lc_loading_orange_2.png"];
        [self addSubview:_backgroundView];
        
        _rotationView = [[UIImageView alloc] initWithFrame:rect];
        _rotationView.image = [UIImage imageNamed:@"lc_loading_orange_1.png"];
        [self addSubview:_rotationView];
    }
    
    return self;
}
 
- (id)initWithFrame:(CGRect)frame
{
 
    if (self = [super initWithFrame:frame])
    {
        _style = DHActivityIndicatorViewStyleYellow;
        
        CGSize size = CGSizeMake(22, 22);
        CGRect rect = self.frame;
        rect.origin.x = frame.origin.x;
        rect.origin.y = frame.origin.y;
        rect.size = size;
        self.frame = rect;
        
        rect.origin.x = 0;
        rect.origin.y = 0;
        _backgroundView = [[UIImageView alloc] initWithFrame:rect];
        _backgroundView.image = [UIImage imageNamed:@"lc_loading_orange_2.png"];
        [self addSubview:_backgroundView];
        
        _rotationView = [[UIImageView alloc] initWithFrame:rect];
        _rotationView.image = [UIImage imageNamed:@"lc_loading_orange_1.png"];
        [self addSubview:_rotationView];
    }
    
    return self;
}
 
- (void) startAnimating
{
    [_rotationView.layer removeAllAnimations];
    [_backgroundView.layer removeAllAnimations];
    
    CABasicAnimation* rotationAnimation;
    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
    rotationAnimation.fillMode = kCAFillModeForwards;
    rotationAnimation.fromValue = @(0);
    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];
    rotationAnimation.duration = 1.5;
    rotationAnimation.repeatCount = HUGE_VALF;
    rotationAnimation.removedOnCompletion = NO;
    [_rotationView.layer addAnimation:rotationAnimation forKey:ANIMATION_KEY];
    
    rotationAnimation.toValue = [NSNumber numberWithFloat: -M_PI * 2.0 ];
    [_backgroundView.layer addAnimation:rotationAnimation forKey:ANIMATION_KEY];
}
 
- (void) stopAnimating
{
    [_rotationView.layer removeAllAnimations];
    [_backgroundView.layer removeAllAnimations];
}
 
- (void) setStyle:(DHActivityIndicatorViewStyle)style {
    if (style == DHActivityIndicatorViewStyleYellow) {
        _backgroundView.image = [UIImage imageNamed:@"lc_loading_orange_2.png"];
        _rotationView.image = [UIImage imageNamed:@"lc_loading_orange_1.png"];
    } else if (style == DHActivityIndicatorViewStyleWhite) {
        _backgroundView.image = [UIImage imageNamed:@"lc_loading_white_2.png"];
        _rotationView.image = [UIImage imageNamed:@"lc_loading_white_1.png"];
    }
}
 
// MBProgressHud: The view should implement intrinsicContentSize for proper sizing. For best results use approximately 37 by 37 pixels
- (CGSize)intrinsicContentSize {
    return CGSizeMake(22, 22);
}
 
@end