forked from Antondomashnev/ADTickerLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathADTickerLabel.m
More file actions
491 lines (349 loc) · 15.5 KB
/
ADTickerLabel.m
File metadata and controls
491 lines (349 loc) · 15.5 KB
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
//
// ADTickerLabel.m
// ADTickerLabel
//
// Created by Anton Domashnev on 28.05.13.
// Copyright (c) 2013 Anton Domashnev. All rights reserved.
//
#import "ADTickerLabel.h"
#import <QuartzCore/QuartzCore.h>
@interface ADTickerCharacterView : UIView
@property (nonatomic, strong) NSArray *charactersArray;
@property (nonatomic, strong) NSString *selectedCharacter;
@property (nonatomic, strong) UILabel *textLabel;
@property (nonatomic, unsafe_unretained) float changeTextAnimationDuration;
@property (nonatomic, unsafe_unretained) ADTickerLabelScrollDirection scrollDirection;
@property (nonatomic, unsafe_unretained) NSInteger selectedCharacterIndex;
- (void)setSelectedCharacter:(NSString *)selectedCharacter animated:(BOOL)animated;
- (id)initWithFrame:(CGRect)frame textLabel:(UILabel *)textLabel;
@end
@implementation ADTickerCharacterView
@synthesize charactersArray = _charactersArray;
@synthesize selectedCharacter = _selectedCharacter;
@synthesize textLabel = _textLabel;
@synthesize changeTextAnimationDuration = _changeTextAnimationDuration;
- (id)initWithFrame:(CGRect)frame textLabel:(UILabel *)textLabel{
if(self = [super initWithFrame: frame]){
self.clipsToBounds = YES;
self.backgroundColor = [UIColor clearColor];
self.textLabel = textLabel;
[self addSubview: textLabel];
}
return self;
}
- (void)setCharactersArray:(NSArray *)charactersArray{
_charactersArray = charactersArray;
NSMutableString *string = [NSMutableString string];
for(int i = 0; i < [charactersArray count]; i++){
[string appendString: charactersArray[i]];
if(i != ([charactersArray count] - 1)){
[string appendString: @"\n"];
}
}
self.textLabel.text = string;
}
- (CGFloat)positionYForCharacterAtIndex:(NSInteger)index{
return -index * (self.textLabel.frame.size.height / [self.charactersArray count]);
}
- (void)animateToPositionY:(CGFloat)positionY withCallback:(void(^)(void))callback{
CGRect newFrame = self.frame;
newFrame.origin.y = positionY;
[UIView animateWithDuration:self.changeTextAnimationDuration animations:^{
self.frame = newFrame;
} completion:^(BOOL finished) {
callback();
}];
}
- (void)setSelectedCharacter:(NSString *)selectedCharacter animated:(BOOL)animated{
if(self.scrollDirection == ADTickerLabelScrollDirectionUp){
NSInteger selectedCharacterIndex = [selectedCharacter integerValue];
if (![selectedCharacter isEqualToString:@"."]){
selectedCharacterIndex++;
}
if(selectedCharacterIndex <= self.selectedCharacterIndex){
[self animateToPositionY:[self positionYForCharacterAtIndex: selectedCharacterIndex] withCallback:^{
self.selectedCharacter = selectedCharacter;
self.selectedCharacterIndex = selectedCharacterIndex;
}];
}
else if(selectedCharacterIndex > self.selectedCharacterIndex){
//We try to find the chatracter in secod part of array
for(int i = [self.charactersArray count] / 2; i < [self.charactersArray count]; i++){
if([self.charactersArray[i] isEqualToString: selectedCharacter]){
selectedCharacterIndex = i;
break;
}
}
[self animateToPositionY:[self positionYForCharacterAtIndex: selectedCharacterIndex] withCallback:^{
self.selectedCharacter = selectedCharacter;
self.selectedCharacterIndex = [self.charactersArray indexOfObject: selectedCharacter];
CGRect newFrame = self.frame;
newFrame.origin.y = [self positionYForCharacterAtIndex: self.selectedCharacterIndex];
self.frame = newFrame;
}];
}
}
else{
NSInteger selectedCharacterIndex = [self.charactersArray count] - 1 - [selectedCharacter integerValue];
if ([selectedCharacter isEqualToString:@"."]){
selectedCharacterIndex--;
}
if(selectedCharacterIndex < self.selectedCharacterIndex){
[self animateToPositionY:[self positionYForCharacterAtIndex: selectedCharacterIndex] withCallback:^{
self.selectedCharacter = selectedCharacter;
self.selectedCharacterIndex = selectedCharacterIndex;
}];
}
else if(selectedCharacterIndex > self.selectedCharacterIndex){
//We try to find the chatracter in secod part of array
for(int i = [self.charactersArray count] / 2; i > 0; i--){
if([self.charactersArray[i] isEqualToString: selectedCharacter]){
selectedCharacterIndex = i;
break;
}
}
[self animateToPositionY:[self positionYForCharacterAtIndex: selectedCharacterIndex] withCallback:^{
self.selectedCharacter = selectedCharacter;
self.selectedCharacterIndex = [self.charactersArray indexOfObject: selectedCharacter];
CGRect newFrame = self.frame;
newFrame.origin.y = [self positionYForCharacterAtIndex: self.selectedCharacterIndex];
self.frame = newFrame;
}];
}
}
}
@end
@interface ADTickerLabel()
@property (nonatomic, strong) NSMutableArray *characterViewsArray;
@property (nonatomic, strong) NSArray *charactersArray;
@property (nonatomic, strong) CAShapeLayer *maskLayer;
@property (nonatomic, unsafe_unretained) CGRect initialFrame;
@end
@implementation ADTickerLabel
@synthesize text = _text;
@synthesize font = _font;
@synthesize characterWidth = _characterWidth;
@synthesize textColor = _textColor;
@synthesize changeTextAnimationDuration = _changeTextAnimationDuration;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.frame = frame;
self.initialFrame = frame;
self.backgroundColor = [UIColor clearColor];
self.characterWidth = 8.f;
self.font = [UIFont systemFontOfSize: 12.];
self.textColor = [UIColor blackColor];
self.characterViewsArray = [NSMutableArray array];
self.changeTextAnimationDuration = 1.f;
self.scrollDirection = ADTickerLabelScrollDirectionUp;
[self addMaskLayer];
}
return self;
}
#pragma mark MaskLayer
- (CGRect)maskLayerFrame{
CGRect frame = CGRectZero;
frame.size.width = [UIScreen mainScreen].bounds.size.width;
frame.size.height = self.font.lineHeight;
frame.origin.x = 0;
frame.origin.y = 0;
return frame;
}
- (void)updateMaskLayerPath{
CGPathRef path = CGPathCreateWithRect([self maskLayerFrame], NULL);
self.maskLayer.path = path;
CGPathRelease(path);
}
- (void)addMaskLayer{
self.maskLayer = [CAShapeLayer layer];
CGPathRef path = CGPathCreateWithRect([self maskLayerFrame], NULL);
self.maskLayer.path = path;
CGPathRelease(path);
[self.maskLayer setFillColor: [UIColor redColor].CGColor];
[self.layer setMask: self.maskLayer];
}
#pragma mark ADTickerCharacterView
- (void)insertNewTickerCharacterView{
CGRect newTextLabelBounds = CGRectZero;
newTextLabelBounds.origin = CGPointZero;
newTextLabelBounds.size = CGSizeMake(self.characterWidth, self.font.lineHeight * [self.charactersArray count]);
UILabel *textLabel = [[UILabel alloc] initWithFrame:newTextLabelBounds];
textLabel.font = self.font;
textLabel.textAlignment = NSTextAlignmentRight;
textLabel.backgroundColor = [UIColor clearColor];
textLabel.textColor = self.textColor;
textLabel.numberOfLines = 0;
CGRect tickerCharacterViewFrame = self.bounds;
tickerCharacterViewFrame.size.height = newTextLabelBounds.size.height;
tickerCharacterViewFrame.origin.y = (self.scrollDirection == ADTickerLabelScrollDirectionDown) ? -self.font.lineHeight * ([self.charactersArray count] - 1) : 0;
ADTickerCharacterView *numbericView = [[ADTickerCharacterView alloc] initWithFrame:tickerCharacterViewFrame textLabel: textLabel];
numbericView.selectedCharacter = @"0";
numbericView.selectedCharacterIndex = [self.charactersArray count] - 1;
numbericView.charactersArray = self.charactersArray;
numbericView.scrollDirection = self.scrollDirection;
numbericView.changeTextAnimationDuration = self.changeTextAnimationDuration;
[self addSubview: numbericView];
[self.characterViewsArray addObject: numbericView];
}
- (void)deleteCharacterView{
NSUInteger deleteIndex = [self.characterViewsArray count] - 1;
ADTickerCharacterView *numericView = [self.characterViewsArray objectAtIndex:deleteIndex];
[numericView removeFromSuperview];
[self.characterViewsArray removeObject: numericView];
}
#pragma mark Frames
- (CGRect)viewFrameOfTextAlignment:(UITextAlignment)textAlignment{
CGRect newViewFrame = self.frame;
float charactersWidth = [self.characterViewsArray count] * self.characterWidth;
switch (textAlignment){
case NSTextAlignmentRight:
newViewFrame.origin.x = self.initialFrame.origin.x + self.frame.size.width - charactersWidth;
break;
case NSTextAlignmentCenter:
newViewFrame.origin.x = self.initialFrame.origin.x + (self.frame.size.width - charactersWidth) / 2;
break;
case NSTextAlignmentLeft:
default:
newViewFrame.origin.x = self.initialFrame.origin.x;
break;
}
return newViewFrame;
}
- (void)updateSELFFrame{
if ([self.characterViewsArray count] == 0){
return;
}
self.frame = [self viewFrameOfTextAlignment:self.textAlignment];
}
- (void)updateTickerCharacterViewsFrames{
__block float originX = 0;
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *numericView, NSUInteger idx, BOOL *stop) {
CGRect numericViewFrame = numericView.frame;
numericViewFrame.origin.x = originX;
numericViewFrame.origin.y = (self.scrollDirection == ADTickerLabelScrollDirectionDown) ? -self.font.lineHeight * ([self.charactersArray count] - 1) : 0;
numericViewFrame.size.width = self.characterWidth;
numericView.frame = numericViewFrame;
originX += self.characterWidth;
}];
}
- (void)updateUIFrames{
[self updateSELFFrame];
[self updateMaskLayerPath];
[self updateTickerCharacterViewsFrames];
}
#pragma mark Fonts
- (void)updateTickerCharacterViewsFont{
[self.characterViewsArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
UILabel *tickerCharacterTextLabel = ((ADTickerCharacterView *)obj).textLabel;
tickerCharacterTextLabel.font = self.font;
}];
}
- (void)updateTickerCharacterViewsTextColor{
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *obj, NSUInteger idx, BOOL *stop) {
obj.textLabel.textColor = self.textColor;
}];
}
- (void)updateTickerCharacterViewsShadow{
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *obj, NSUInteger idx, BOOL *stop) {
obj.textLabel.shadowOffset = self.shadowOffset;
obj.textLabel.shadowColor = self.shadowColor;
}];
}
#pragma mark Interface
- (void)setScrollDirection:(ADTickerLabelScrollDirection)scrollDirection{
if(scrollDirection != _scrollDirection){
_scrollDirection = scrollDirection;
if(scrollDirection == ADTickerLabelScrollDirectionDown){
self.charactersArray = @[@"9", @"8", @"7", @"6", @"5", @"4", @"3", @"2", @"1", @"0", @".", @"9", @"8", @"7", @"6", @"5", @"4", @"3", @"2", @"1", @"0", @"."];
}
else{
self.charactersArray = @[@".", @"0", @"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @".", @"0", @"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9"];
}
[self.characterViewsArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
ADTickerCharacterView *numericView = (ADTickerCharacterView *)obj;
[numericView setScrollDirection: _scrollDirection];
}];
}
}
- (void)setChangeTextAnimationDuration:(float)changeTextAnimationDuration{
if(_changeTextAnimationDuration != changeTextAnimationDuration){
_changeTextAnimationDuration = changeTextAnimationDuration;
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *obj, NSUInteger idx, BOOL *stop) {
obj.changeTextAnimationDuration = changeTextAnimationDuration;
}];
}
}
- (void)setShadowOffset:(CGSize)shadowOffset{
_shadowOffset = shadowOffset;
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *obj, NSUInteger idx, BOOL *stop) {
obj.textLabel.shadowOffset = shadowOffset;
}];
}
- (void)setShadowColor:(UIColor *)shadowColor{
_shadowColor = shadowColor;
[self.characterViewsArray enumerateObjectsUsingBlock:^(ADTickerCharacterView *obj, NSUInteger idx, BOOL *stop) {
obj.textLabel.shadowColor = shadowColor;
}];
}
- (void)setTextColor:(UIColor *)textColor{
if(![_textColor isEqual: textColor]){
_textColor = textColor;
[self updateTickerCharacterViewsTextColor];
}
}
- (void)setFont:(UIFont *)font{
if(![_font isEqual: font]){
_font = font;
[self updateUIFrames];
}
}
- (void)setCharacterWidth:(float)characterWidth{
if(_characterWidth != characterWidth){
_characterWidth = characterWidth;
[self updateUIFrames];
}
}
- (void)setText:(NSString *)text{
[self setText:text animated:YES];
}
- (void)setText:(NSString *)text animated:(BOOL)animated{
if(![_text isEqualToString: text]){
NSInteger oldTextLength = [_text length];
NSInteger newTextLength = [text length];
if(newTextLength > oldTextLength){
NSInteger textLengthDelta = newTextLength - oldTextLength;
for(int i = 0 ; i < textLengthDelta; i++){
[self insertNewTickerCharacterView];
}
[self updateUIFrames];
}
else if(newTextLength < oldTextLength){
NSInteger textLengthDelta = oldTextLength - newTextLength;
for(int i = 0 ; i < textLengthDelta; i++){
[self deleteCharacterView];
}
[self updateUIFrames];
}
[self.characterViewsArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
ADTickerCharacterView *numericView = (ADTickerCharacterView *)obj;
[numericView setSelectedCharacter:[text substringWithRange:NSMakeRange(idx, 1)] animated:animated];
}];
_text = text;
[self updateTickerCharacterViewsShadow];
}
}
- (void)setTextAlignment:(UITextAlignment)textAlignment
{
_textAlignment = textAlignment;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
@end