-
Notifications
You must be signed in to change notification settings - Fork 152
/
UAProgressView.m
444 lines (329 loc) · 11.3 KB
/
UAProgressView.m
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
//
// UAProgressView.m
// UAProgressView-Example
//
// Created by Matt Coneybeare on 5/25/14.
// Copyright (c) 2014 Urban Apps. All rights reserved.
//
#import "UAProgressView.h"
NSString * const UAProgressViewProgressAnimationKey = @"UAProgressViewProgressAnimationKey";
@interface UACircularProgressView : UIView
- (void)updateProgress:(CGFloat)progress;
- (CAShapeLayer *)shapeLayer;
@end
@interface UAProgressView () <UIGestureRecognizerDelegate>
@property (nonatomic, strong) UACircularProgressView *progressView;
@property (nonatomic, assign) int valueLabelProgressPercentDifference;
@property (nonatomic, strong) NSTimer *valueLabelUpdateTimer;
@property (nonatomic, strong) NSTimer *longPressTimer;
@end
@implementation UAProgressView
@synthesize tintColor = _tintColor;
#pragma mark - Init
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
[self sharedSetup];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
[self sharedSetup];
}
return self;
}
- (void)sharedSetup {
self.progressView = [[UACircularProgressView alloc] initWithFrame:self.bounds];
self.progressView.shapeLayer.fillColor = [UIColor clearColor].CGColor;
[self addSubview:self.progressView];
[self resetDefaults];
}
- (void)resetDefaults {
self.fillChangedBlock = nil;
self.didSelectBlock = nil;
self.progressChangedBlock = nil;
self.centralView = nil;
_fillOnTouch = YES;
_progress = 0.0;
_animationDuration = 0.3f;
_longPressDuration = 0.0f;
_longPressCancelsSelect = NO;
self.borderWidth = 1.0f;
self.lineWidth = 2.0f;
[self setupGestureRecognizer];
[self tintColorDidChange];
}
- (void)setupGestureRecognizer {
// while this is a long press gesture, it is actually recognizing any presses < longPressDuration
_gestureRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(touchDetected:)];
_gestureRecognizer.delegate = self;
_gestureRecognizer.minimumPressDuration = 0.0;
[self addGestureRecognizer:_gestureRecognizer];
}
#pragma mark - Public Accessors
- (void)setBorderWidth:(CGFloat)borderWidth {
_borderWidth = borderWidth;
self.progressView.shapeLayer.borderWidth = borderWidth;
}
- (void)setLineWidth:(CGFloat)lineWidth {
_lineWidth = lineWidth;
self.progressView.shapeLayer.lineWidth = lineWidth;
}
- (void)setCentralView:(UIView *)centralView {
if (_centralView != centralView) {
[_centralView removeFromSuperview];
_centralView = centralView;
[self addSubview:self.centralView];
}
}
#pragma mark - Color
- (void)tintColorDidChange {
if ([[self superclass] instancesRespondToSelector: @selector(tintColorDidChange)]) {
[super tintColorDidChange];
}
UIColor *tintColor = self.tintColor;
self.progressView.shapeLayer.strokeColor = tintColor.CGColor;
self.progressView.shapeLayer.borderColor = tintColor.CGColor;
}
- (UIColor*) tintColor
{
if (_tintColor == nil) {
_tintColor = [UIColor colorWithRed: 0.0 green: 122.0/255.0 blue: 1.0 alpha: 1.0];
}
return _tintColor;
}
- (void) setTintColor:(UIColor *)tintColor
{
[self willChangeValueForKey: @"tintColor"];
_tintColor = tintColor;
[self didChangeValueForKey: @"tintColor"];
[self tintColorDidChange];
}
- (UIColor*) fillColor
{
if (_fillColor == nil) {
return _tintColor;
}
return _fillColor;
}
#pragma mark - Layout
- (void)layoutSubviews {
[super layoutSubviews];
self.progressView.frame = self.bounds;
self.centralView.center = CGPointMake(CGRectGetMidX(self.bounds), CGRectGetMidY(self.bounds));
}
#pragma mark - Progress Control
- (void)setProgress:(CGFloat)progress animated:(BOOL)animated {
progress = MAX( MIN(progress, 1.0), 0.0); // keep it between 0 and 1
if (_progress == progress) {
return;
}
if (animated) {
[self animateToProgress:progress];
} else {
[self stopAnimation];
_progress = progress;
[self.progressView updateProgress:_progress];
}
if (self.progressChangedBlock) {
self.progressChangedBlock(self, _progress);
}
}
- (void)setProgress:(CGFloat)progress {
[self setProgress:progress animated:NO];
}
- (void)setAnimationDuration:(CFTimeInterval)animationDuration {
if (_animationDuration < 0)
return;
_animationDuration = animationDuration;
}
- (void)animateToProgress:(CGFloat)progress {
[self stopAnimation];
// Add shape animation
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
animation.removedOnCompletion = NO;
animation.fillMode = kCAFillModeForwards;
animation.duration = self.animationDuration;
animation.fromValue = @(self.progress);
animation.toValue = @(progress);
animation.delegate = self;
[self.progressView.layer addAnimation:animation forKey:UAProgressViewProgressAnimationKey];
// Add timer to update valueLabel
_valueLabelProgressPercentDifference = (progress - self.progress) * 100;
CFTimeInterval timerInterval = self.animationDuration / ABS(_valueLabelProgressPercentDifference);
self.valueLabelUpdateTimer = [NSTimer scheduledTimerWithTimeInterval:timerInterval
target:self
selector:@selector(onValueLabelUpdateTimer:)
userInfo:nil
repeats:YES];
_progress = progress;
}
- (void)stopAnimation {
// Stop running animation
[self.progressView.layer removeAnimationForKey:UAProgressViewProgressAnimationKey];
// Stop timer
[self.valueLabelUpdateTimer invalidate];
self.valueLabelUpdateTimer = nil;
}
- (void)onValueLabelUpdateTimer:(NSTimer *)timer {
if (_valueLabelProgressPercentDifference > 0) {
_valueLabelProgressPercentDifference--;
} else {
_valueLabelProgressPercentDifference++;
}
}
#pragma mark - Highlighting
- (void)addFill {
if (self.fillOnTouch) {
// update the layer model
self.progressView.layer.backgroundColor = [self fillColor].CGColor;
// call block
if (self.fillChangedBlock) {
self.fillChangedBlock(self, YES, NO);
}
}
}
- (void)removeFillAnimated:(BOOL)animated {
if (self.fillOnTouch) {
// add the fade-out animation
if (animated) {
CABasicAnimation *highlightAnimation = [CABasicAnimation animationWithKeyPath:@"backgroundColor"];
highlightAnimation.fromValue = (id)self.progressView.layer.backgroundColor;
highlightAnimation.toValue = (id)[UIColor clearColor].CGColor;
highlightAnimation.removedOnCompletion = NO;
[self.progressView.layer addAnimation:highlightAnimation forKey:@"backgroundColor"];
}
// update the layer model.
self.progressView.layer.backgroundColor = [UIColor clearColor].CGColor;
// call block
if (self.fillChangedBlock) {
self.fillChangedBlock(self, NO, animated);
}
}
}
- (void)removeFill {
[self removeFillAnimated:YES];
}
#pragma mark - CAAnimationDelegate
- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
[self.progressView updateProgress:_progress];
[self.valueLabelUpdateTimer invalidate];
self.valueLabelUpdateTimer = nil;
}
#pragma mark - Gesture Recognizers
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
if (self.centralView && [touch.view isDescendantOfView:self.centralView] && self.centralView.userInteractionEnabled) {
return NO;
}
return YES;
}
- (void)touchDetected:(UILongPressGestureRecognizer *)gestureRecognizer {
CGPoint touch = [gestureRecognizer locationOfTouch:0 inView:self];
if (UIGestureRecognizerStateBegan == gestureRecognizer.state) { // press is being held down
[self addFill];
[self startLongPressTimer];
} else if (UIGestureRecognizerStateChanged == gestureRecognizer.state) { // press was recognized, but then moved
if (CGRectContainsPoint(self.bounds, touch)) {
[self addFill];
if (self.longPressTimer == nil) {
[self startLongPressTimer];
}
} else {
[self removeFillAnimated:NO];
[self stopLongPressTimer];
}
} else if (UIGestureRecognizerStateEnded == gestureRecognizer.state) { // the touch has been picked up
if (CGRectContainsPoint(self.bounds, touch)) {
[self removeFill];
if (self.didSelectBlock) {
self.didSelectBlock(self);
}
} else {
[self removeFillAnimated:NO];
}
[self stopLongPressTimer];
} else {
[self removeFillAnimated:NO];
[self stopLongPressTimer];
}
}
- (void)stopLongPressTimer
{
if (self.longPressTimer != nil) {
[self.longPressTimer invalidate];
self.longPressTimer = nil;
}
}
- (void)startLongPressTimer
{
if (self.longPressDuration > 0.0) {
[self.longPressTimer invalidate];
self.longPressTimer = [NSTimer scheduledTimerWithTimeInterval:_longPressDuration
target:self
selector:@selector(longPressTimerFired:)
userInfo:nil
repeats:NO];
}
}
- (void)longPressTimerFired:(NSTimer *)timer {
if (_longPressCancelsSelect) {
_gestureRecognizer.enabled = NO;
_gestureRecognizer.enabled = YES;
}
if (self.didLongPressBlock) {
self.didLongPressBlock(self);
}
}
- (void)setLongPressDuration:(CGFloat)longPressDuration
{
longPressDuration = MAX(0.0, longPressDuration); // keep it above 0.0
if (_longPressDuration == longPressDuration) {
return;
} else {
_longPressDuration = longPressDuration;
}
}
@end
#pragma mark - UACircularProgressView
@implementation UACircularProgressView
+ (Class)layerClass {
return CAShapeLayer.class;
}
- (CAShapeLayer *)shapeLayer {
return (CAShapeLayer *)self.layer;
}
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
[self updateProgress:0];
}
return self;
}
- (void)layoutSubviews {
[super layoutSubviews];
self.shapeLayer.cornerRadius = self.frame.size.width / 2.0f;
self.shapeLayer.path = [self layoutPath].CGPath;
}
- (UIBezierPath *)layoutPath {
const double TWO_M_PI = 2.0 * M_PI;
const double startAngle = 0.75 * TWO_M_PI;
const double endAngle = startAngle + TWO_M_PI;
CGFloat width = self.frame.size.width;
CGFloat borderWidth = self.shapeLayer.borderWidth;
return [UIBezierPath bezierPathWithArcCenter:CGPointMake(width/2.0f, width/2.0f)
radius:width/2.0f - borderWidth
startAngle:startAngle
endAngle:endAngle
clockwise:YES];
}
- (void)updateProgress:(CGFloat)progress {
[self updatePath:progress];
}
- (void)updatePath:(CGFloat)progress {
[CATransaction begin];
[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];
self.shapeLayer.strokeEnd = progress;
[CATransaction commit];
}
@end