TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2016 |
Maintained by Anton Domashnev.
An objective-c UIView which provide a mechanism to show numbers with rolling effect, like in counter. Click to see video
ADTickerLabel works on any iOS version only greater or equal than 7.0 and is compatible with only ARC projects. It depends on the following Apple frameworks:
You will need LLVM 3.0 or later in order to build ADTickerLabel.
Another way to add the ADTickerLabel to your project is to directly add the source files and resources to your project.
#import "ADTickerLabel.h"
./*
Width and height calculates automatically after you have set the font and characterWidth or if you want you can use default values
*/
ADTickerLabel *tickerLabel = [[ADTickerLabel alloc] initWithFrame: CGRectMake(100, 50, 0, 15)];
tickerLabel.font = [UIFont boldSystemFontOfSize: 12];
tickerLabel.characterWidth = 8;
tickerLabel.textColor = [UIColor whiteColor];
[self addSubview: tickerLabel];
tickerLabel.text = @"1908";
Also you can see the example of usage in ViewController.m in demo project.
This code is distributed under the terms and conditions of the MIT license.
**Version 0.67 @ 21.1.15
**Version 0.59 @ 22.6.13
Version 0.5 @ 10.6.13