├── .gitignore ├── ADTickerLabel.h ├── ADTickerLabel.m ├── ADTickerLabel.podspec ├── ADTickerLabel.xcodeproj └── project.pbxproj ├── ADTickerLabel ├── ADTickerLabel-Info.plist ├── ADTickerLabel-Prefix.pch ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /ADTickerLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel.h -------------------------------------------------------------------------------- /ADTickerLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel.m -------------------------------------------------------------------------------- /ADTickerLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel.podspec -------------------------------------------------------------------------------- /ADTickerLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ADTickerLabel/ADTickerLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/ADTickerLabel-Info.plist -------------------------------------------------------------------------------- /ADTickerLabel/ADTickerLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/ADTickerLabel-Prefix.pch -------------------------------------------------------------------------------- /ADTickerLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/AppDelegate.h -------------------------------------------------------------------------------- /ADTickerLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/AppDelegate.m -------------------------------------------------------------------------------- /ADTickerLabel/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/Default-568h@2x.png -------------------------------------------------------------------------------- /ADTickerLabel/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/Default.png -------------------------------------------------------------------------------- /ADTickerLabel/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/Default@2x.png -------------------------------------------------------------------------------- /ADTickerLabel/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/ViewController.h -------------------------------------------------------------------------------- /ADTickerLabel/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/ViewController.m -------------------------------------------------------------------------------- /ADTickerLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ADTickerLabel/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /ADTickerLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/ADTickerLabel/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antondomashnev/ADTickerLabel/HEAD/README.md --------------------------------------------------------------------------------