├── .gitignore ├── BBCyclingLabel.podspec ├── BBCyclingLabel ├── BBCyclingLabel.h └── BBCyclingLabel.m ├── BBCyclingLabelDemo.xcodeproj └── project.pbxproj ├── BBCyclingLabelDemo ├── Classes │ ├── BBAppDelegate.h │ ├── BBAppDelegate.m │ ├── BBRootViewController.h │ └── BBRootViewController.m ├── Other │ ├── BBCyclingLabelDemo-Info.plist │ ├── BBCyclingLabelDemo-Prefix.pch │ ├── BBCyclingLabelDemo.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Resources │ └── Image │ ├── Background.png │ └── Background@2x.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /BBCyclingLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabel.podspec -------------------------------------------------------------------------------- /BBCyclingLabel/BBCyclingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabel/BBCyclingLabel.h -------------------------------------------------------------------------------- /BBCyclingLabel/BBCyclingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabel/BBCyclingLabel.m -------------------------------------------------------------------------------- /BBCyclingLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Classes/BBAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Classes/BBAppDelegate.h -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Classes/BBAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Classes/BBAppDelegate.m -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Classes/BBRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Classes/BBRootViewController.h -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Classes/BBRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Classes/BBRootViewController.m -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Other/BBCyclingLabelDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Other/BBCyclingLabelDemo-Info.plist -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Other/BBCyclingLabelDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Other/BBCyclingLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Other/BBCyclingLabelDemo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Other/BBCyclingLabelDemo.storyboard -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Other/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Other/main.m -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Resources/Image/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Resources/Image/Background.png -------------------------------------------------------------------------------- /BBCyclingLabelDemo/Resources/Image/Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/BBCyclingLabelDemo/Resources/Image/Background@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biasedbit/BBCyclingLabel/HEAD/README.md --------------------------------------------------------------------------------