├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── SYNFadingLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SYNFadingLabel-Example.xcscheme ├── SYNFadingLabel │ ├── Base.lproj │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── SYNAppDelegate.h │ ├── SYNAppDelegate.m │ ├── SYNFadingLabel-Info.plist │ ├── SYNFadingLabel-Prefix.pch │ ├── SYNViewController.h │ ├── SYNViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ └── stars.jpeg └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep ├── Classes │ ├── .gitkeep │ ├── SYNFadingLabel.h │ ├── SYNFadingLabel.m │ └── SYNFadingLabel.xib └── Screenshots │ ├── animated.gif │ └── screenshot.png ├── README.md └── SYNFadingLabel.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/SYNFadingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SYNFadingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SYNFadingLabel.xcodeproj/xcshareddata/xcschemes/SYNFadingLabel-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel.xcodeproj/xcshareddata/xcschemes/SYNFadingLabel-Example.xcscheme -------------------------------------------------------------------------------- /Example/SYNFadingLabel/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/SYNFadingLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SYNFadingLabel/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNAppDelegate.h -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNAppDelegate.m -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNFadingLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNFadingLabel-Info.plist -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNFadingLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNFadingLabel-Prefix.pch -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNViewController.h -------------------------------------------------------------------------------- /Example/SYNFadingLabel/SYNViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/SYNViewController.m -------------------------------------------------------------------------------- /Example/SYNFadingLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/SYNFadingLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/main.m -------------------------------------------------------------------------------- /Example/SYNFadingLabel/stars.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/SYNFadingLabel/stars.jpeg -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/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/THREDOpenSource/SYNFadingLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/SYNFadingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Pod/Classes/SYNFadingLabel.h -------------------------------------------------------------------------------- /Pod/Classes/SYNFadingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Pod/Classes/SYNFadingLabel.m -------------------------------------------------------------------------------- /Pod/Classes/SYNFadingLabel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Pod/Classes/SYNFadingLabel.xib -------------------------------------------------------------------------------- /Pod/Screenshots/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Pod/Screenshots/animated.gif -------------------------------------------------------------------------------- /Pod/Screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/Pod/Screenshots/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/README.md -------------------------------------------------------------------------------- /SYNFadingLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THREDOpenSource/SYNFadingLabel/HEAD/SYNFadingLabel.podspec --------------------------------------------------------------------------------