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
//
// ASValueTrackingSlider.m
// ValueTrackingSlider
//
// Created by Alan Skipp on 19/10/2013.
// Copyright (c) 2013 Alan Skipp. All rights reserved.
//
#import "ASValueTrackingSlider.h"
#import "ASValuePopUpView.h"
@interface ASValueTrackingSlider() <ASValuePopUpViewDelegate>
@property (strong, nonatomic) ASValuePopUpView *popUpView;
@property (nonatomic) BOOL popUpViewAlwaysOn; // default is NO
@end
@implementation ASValueTrackingSlider
{
NSNumberFormatter *_numberFormatter;
UIColor *_popUpViewColor;
NSArray *_keyTimes;
CGFloat _valueRange;
}
#pragma mark - initialization
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setup];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
[self setup];
}
return self;
}
#pragma mark - public
- (void)setAutoAdjustTrackColor:(BOOL)autoAdjust
{
if (_autoAdjustTrackColor == autoAdjust) return;
_autoAdjustTrackColor = autoAdjust;
// setMinimumTrackTintColor has been overridden to also set autoAdjustTrackColor to NO
// therefore super's implementation must be called to set minimumTrackTintColor
if (autoAdjust == NO) {
super.minimumTrackTintColor = nil; // sets track to default blue color
} else {
super.minimumTrackTintColor = [self.popUpView opaqueColor];
}
}
- (void)setTextColor:(UIColor *)color
{
_textColor = color;
[self.popUpView setTextColor:color];
}
- (void)setFont:(UIFont *)font
{
NSAssert(font, @"font can not be nil, it must be a valid UIFont");
_font = font;
[self.popUpView setFont:font];
}
// return the currently displayed color if possible, otherwise return _popUpViewColor
// if animated colors are set, the color will change each time the slider value changes
- (UIColor *)popUpViewColor
{
return self.popUpView.color ?: _popUpViewColor;
}
- (void)setPopUpViewColor:(UIColor *)color
{
_popUpViewColor = color;
_popUpViewAnimatedColors = nil; // animated colors should be discarded
[self.popUpView setColor:color];
if (_autoAdjustTrackColor) {
super.minimumTrackTintColor = [self.popUpView opaqueColor];
}
}
- (void)setPopUpViewAnimatedColors:(NSArray *)colors
{
[self setPopUpViewAnimatedColors:colors withPositions:nil];
}
// if 2 or more colors are present, set animated colors
// if only 1 color is present then call 'setPopUpViewColor:'
// if arg is nil then restore previous _popUpViewColor
- (void)setPopUpViewAnimatedColors:(NSArray *)colors withPositions:(NSArray *)positions
{
if (positions) {
NSAssert([colors count] == [positions count], @"popUpViewAnimatedColors and locations should contain the same number of items");
}
_popUpViewAnimatedColors = colors;
_keyTimes = [self keyTimesFromSliderPositions:positions];
if ([colors count] >= 2) {
[self.popUpView setAnimatedColors:colors withKeyTimes:_keyTimes];
} else {
[self setPopUpViewColor:[colors lastObject] ?: _popUpViewColor];
}
}
- (void)setPopUpViewCornerRadius:(CGFloat)radius
{
self.popUpView.cornerRadius = radius;
}
- (CGFloat)popUpViewCornerRadius
{
return self.popUpView.cornerRadius;
}
- (void)setPopUpViewArrowLength:(CGFloat)length
{
self.popUpView.arrowLength = length;
}
- (CGFloat)popUpViewArrowLength
{
return self.popUpView.arrowLength;
}
- (void)setPopUpViewWidthPaddingFactor:(CGFloat)factor
{
self.popUpView.widthPaddingFactor = factor;
}
- (CGFloat)popUpViewWidthPaddingFactor
{
return self.popUpView.widthPaddingFactor;
}
- (void)setPopUpViewHeightPaddingFactor:(CGFloat)factor
{
self.popUpView.heightPaddingFactor = factor;
}
- (CGFloat)popUpViewHeightPaddingFactor
{
return self.popUpView.heightPaddingFactor;
}
// when either the min/max value or number formatter changes, recalculate the popUpView width
- (void)setMaximumValue:(float)maximumValue
{
[super setMaximumValue:maximumValue];
_valueRange = self.maximumValue - self.minimumValue;
}
- (void)setMinimumValue:(float)minimumValue
{
[super setMinimumValue:minimumValue];
_valueRange = self.maximumValue - self.minimumValue;
}
// set max and min digits to same value to keep string length consistent
- (void)setMaxFractionDigitsDisplayed:(NSUInteger)maxDigits
{
[_numberFormatter setMaximumFractionDigits:maxDigits];
[_numberFormatter setMinimumFractionDigits:maxDigits];
}
- (void)setNumberFormatter:(NSNumberFormatter *)numberFormatter
{
_numberFormatter = [numberFormatter copy];
}
- (NSNumberFormatter *)numberFormatter
{
return [_numberFormatter copy]; // return a copy to prevent formatter properties changing and causing mayhem
}
- (void)showPopUpViewAnimated:(BOOL)animated
{
self.popUpViewAlwaysOn = YES;
[self _showPopUpViewAnimated:animated];
}
- (void)hidePopUpViewAnimated:(BOOL)animated
{
self.popUpViewAlwaysOn = NO;
[self _hidePopUpViewAnimated:animated];
}
#pragma mark - ASValuePopUpViewDelegate
- (void)colorDidUpdate:(UIColor *)opaqueColor
{
super.minimumTrackTintColor = opaqueColor;
}
// returns the current offset of UISlider value in the range 0.0 – 1.0
- (CGFloat)currentValueOffset
{
return (self.value - self.minimumValue) / _valueRange;
}
#pragma mark - private
- (void)setup
{
_autoAdjustTrackColor = YES;
_valueRange = self.maximumValue - self.minimumValue;
_popUpViewAlwaysOn = NO;
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterDecimalStyle];
[formatter setRoundingMode:NSNumberFormatterRoundHalfUp];
[formatter setMaximumFractionDigits:2];
[formatter setMinimumFractionDigits:2];
_numberFormatter = formatter;
self.popUpView = [[ASValuePopUpView alloc] initWithFrame:CGRectZero];
self.popUpViewColor = [UIColor colorWithHue:0.6 saturation:0.6 brightness:0.5 alpha:0.8];
self.popUpView.alpha = 0.0;
self.popUpView.delegate = self;
[self addSubview:self.popUpView];
self.textColor = [UIColor whiteColor];
self.font = [UIFont boldSystemFontOfSize:22.0f];
}
// ensure animation restarts if app is closed then becomes active again
- (void)didBecomeActiveNotification:(NSNotification *)note
{
if (self.popUpViewAnimatedColors) {
[self.popUpView setAnimatedColors:_popUpViewAnimatedColors withKeyTimes:_keyTimes];
}
}
- (void)updatePopUpView
{
NSString *valueString; // ask dataSource for string, if nil or blank, get string from _numberFormatter
CGSize popUpViewSize;
if ((valueString = [self.dataSource slider:self stringForValue:self.value]) && valueString.length != 0) {
popUpViewSize = [self.popUpView popUpSizeForString:valueString];
} else {
valueString = [_numberFormatter stringFromNumber:@(self.value)];
popUpViewSize = [self calculatePopUpViewSize];
}
// calculate the popUpView frame
CGRect thumbRect = [self thumbRect];
CGFloat thumbW = thumbRect.size.width;
CGFloat thumbH = thumbRect.size.height;
CGRect popUpRect = CGRectInset(thumbRect, (thumbW - popUpViewSize.width)/2, (thumbH - popUpViewSize.height)/2);
popUpRect.origin.y = thumbRect.origin.y - popUpViewSize.height;
// determine if popUpRect extends beyond the frame of the progress view
// if so adjust frame and set the center offset of the PopUpView's arrow
CGFloat minOffsetX = CGRectGetMinX(popUpRect);
CGFloat maxOffsetX = CGRectGetMaxX(popUpRect) - CGRectGetWidth(self.bounds);
CGFloat offset = minOffsetX < 0.0 ? minOffsetX : (maxOffsetX > 0.0 ? maxOffsetX : 0.0);
popUpRect.origin.x -= offset;
[self.popUpView setFrame:popUpRect arrowOffset:offset text:valueString];
}
- (CGSize)calculatePopUpViewSize
{
// negative values need more width than positive values
CGSize minValSize = [self.popUpView popUpSizeForString:[_numberFormatter stringFromNumber:@(self.minimumValue)]];
CGSize maxValSize = [self.popUpView popUpSizeForString:[_numberFormatter stringFromNumber:@(self.maximumValue)]];
return (minValSize.width >= maxValSize.width) ? minValSize : maxValSize;
}
// takes an array of NSNumbers in the range self.minimumValue - self.maximumValue
// returns an array of NSNumbers in the range 0.0 - 1.0
- (NSArray *)keyTimesFromSliderPositions:(NSArray *)positions
{
if (!positions) return nil;
NSMutableArray *keyTimes = [NSMutableArray array];
for (NSNumber *num in [positions sortedArrayUsingSelector:@selector(compare:)]) {
[keyTimes addObject:@((num.floatValue - self.minimumValue) / _valueRange)];
}
return keyTimes;
}
- (CGRect)thumbRect
{
return [self thumbRectForBounds:self.bounds
trackRect:[self trackRectForBounds:self.bounds]
value:self.value];
}
- (void)_showPopUpViewAnimated:(BOOL)animated
{
if (self.delegate) [self.delegate sliderWillDisplayPopUpView:self];
[self.popUpView showAnimated:animated];
}
- (void)_hidePopUpViewAnimated:(BOOL)animated
{
if ([self.delegate respondsToSelector:@selector(sliderWillHidePopUpView:)]) {
[self.delegate sliderWillHidePopUpView:self];
}
[self.popUpView hideAnimated:animated completionBlock:^{
if ([self.delegate respondsToSelector:@selector(sliderDidHidePopUpView:)]) {
[self.delegate sliderDidHidePopUpView:self];
}
}];
}
#pragma mark - subclassed
-(void)layoutSubviews
{
[super layoutSubviews];
[self updatePopUpView];
}
- (void)didMoveToWindow
{
if (!self.window) { // removed from window - cancel notifications
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
else { // added to window - register notifications
if (self.popUpViewAnimatedColors) { // restart color animation if needed
[self.popUpView setAnimatedColors:_popUpViewAnimatedColors withKeyTimes:_keyTimes];
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didBecomeActiveNotification:)
name:UIApplicationDidBecomeActiveNotification
object:nil];
}
}
- (void)setValue:(float)value
{
[super setValue:value];
[self.popUpView setAnimationOffset:[self currentValueOffset] returnColor:^(UIColor *opaqueReturnColor) {
super.minimumTrackTintColor = opaqueReturnColor;
}];
}
- (void)setValue:(float)value animated:(BOOL)animated
{
if (animated) {
[self.popUpView animateBlock:^(CFTimeInterval duration) {
[UIView animateWithDuration:duration animations:^{
[super setValue:value animated:animated];
[self.popUpView setAnimationOffset:[self currentValueOffset] returnColor:^(UIColor *opaqueReturnColor) {
super.minimumTrackTintColor = opaqueReturnColor;
}];
[self layoutIfNeeded];
}];
}];
} else {
[super setValue:value animated:animated];
}
}
- (void)setMinimumTrackTintColor:(UIColor *)color
{
self.autoAdjustTrackColor = NO; // if a custom value is set then prevent auto coloring
[super setMinimumTrackTintColor:color];
}
- (BOOL)beginTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event
{
BOOL begin = [super beginTrackingWithTouch:touch withEvent:event];
if (begin && !self.popUpViewAlwaysOn) [self _showPopUpViewAnimated:YES];
return begin;
}
- (BOOL)continueTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event
{
BOOL continueTrack = [super continueTrackingWithTouch:touch withEvent:event];
if (continueTrack) {
[self.popUpView setAnimationOffset:[self currentValueOffset] returnColor:^(UIColor *opaqueReturnColor) {
super.minimumTrackTintColor = opaqueReturnColor;
}];
}
return continueTrack;
}
- (void)cancelTrackingWithEvent:(UIEvent *)event
{
[super cancelTrackingWithEvent:event];
if (self.popUpViewAlwaysOn == NO) [self _hidePopUpViewAnimated:YES];
}
- (void)endTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event
{
[super endTrackingWithTouch:touch withEvent:event];
if (self.popUpViewAlwaysOn == NO) [self _hidePopUpViewAnimated:YES];
}
@end