├── .gitignore ├── CRRollingLabel.podspec ├── Example ├── CRRollingLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CRRollingLabel-Example.xcscheme ├── CRRollingLabel │ ├── CRAppDelegate.h │ ├── CRAppDelegate.m │ ├── CRRollingLabel-Info.plist │ ├── CRRollingLabel-Prefix.pch │ ├── CRViewController.h │ ├── CRViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LaunchScreen.storyboard │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CATextLayer+RollingLabelLayerText.h │ ├── CATextLayer+RollingLabelLayerText.m │ ├── CRRollingLabel.h │ └── CRRollingLabel.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /CRRollingLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/CRRollingLabel.podspec -------------------------------------------------------------------------------- /Example/CRRollingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CRRollingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CRRollingLabel.xcodeproj/xcshareddata/xcschemes/CRRollingLabel-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel.xcodeproj/xcshareddata/xcschemes/CRRollingLabel-Example.xcscheme -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRAppDelegate.h -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRAppDelegate.m -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRRollingLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRRollingLabel-Info.plist -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRRollingLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRRollingLabel-Prefix.pch -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRViewController.h -------------------------------------------------------------------------------- /Example/CRRollingLabel/CRViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/CRViewController.m -------------------------------------------------------------------------------- /Example/CRRollingLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CRRollingLabel/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CRRollingLabel/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/CRRollingLabel/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/CRRollingLabel/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/Main.storyboard -------------------------------------------------------------------------------- /Example/CRRollingLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/CRRollingLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/CRRollingLabel/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/CATextLayer+RollingLabelLayerText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Pod/Classes/CATextLayer+RollingLabelLayerText.h -------------------------------------------------------------------------------- /Pod/Classes/CATextLayer+RollingLabelLayerText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Pod/Classes/CATextLayer+RollingLabelLayerText.m -------------------------------------------------------------------------------- /Pod/Classes/CRRollingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Pod/Classes/CRRollingLabel.h -------------------------------------------------------------------------------- /Pod/Classes/CRRollingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/Pod/Classes/CRRollingLabel.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cleveroad/CRRollingLabel/HEAD/README.md --------------------------------------------------------------------------------