├── .gitignore ├── .travis.yml ├── DemoPic ├── JZGlitchLabel.gif └── JZGlitchLabel.jpg ├── Example ├── JZGlitchLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── JZGlitchLabel-Example.xcscheme ├── JZGlitchLabel.xcworkspace │ └── contents.xcworkspacedata ├── JZGlitchLabel │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── JZAppDelegate.h │ ├── JZAppDelegate.m │ ├── JZGlitchLabel-Info.plist │ ├── JZGlitchLabel-Prefix.pch │ ├── JZViewController.h │ ├── JZViewController.m │ ├── Launch Screen.storyboard │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── JZGlitchLabel │ │ │ └── JZGlitchLabel.h │ ├── Local Podspecs │ │ └── JZGlitchLabel.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── JZGlitchLabel.xcscheme │ └── Target Support Files │ │ ├── JZGlitchLabel │ │ ├── Info.plist │ │ ├── JZGlitchLabel-dummy.m │ │ ├── JZGlitchLabel-prefix.pch │ │ ├── JZGlitchLabel-umbrella.h │ │ ├── JZGlitchLabel.modulemap │ │ └── JZGlitchLabel.xcconfig │ │ ├── Pods-JZGlitchLabel_Example │ │ ├── Info.plist │ │ ├── Pods-JZGlitchLabel_Example-acknowledgements.markdown │ │ ├── Pods-JZGlitchLabel_Example-acknowledgements.plist │ │ ├── Pods-JZGlitchLabel_Example-dummy.m │ │ ├── Pods-JZGlitchLabel_Example-frameworks.sh │ │ ├── Pods-JZGlitchLabel_Example-resources.sh │ │ ├── Pods-JZGlitchLabel_Example-umbrella.h │ │ ├── Pods-JZGlitchLabel_Example.debug.xcconfig │ │ ├── Pods-JZGlitchLabel_Example.modulemap │ │ └── Pods-JZGlitchLabel_Example.release.xcconfig │ │ └── Pods-JZGlitchLabel_Tests │ │ ├── Info.plist │ │ ├── Pods-JZGlitchLabel_Tests-acknowledgements.markdown │ │ ├── Pods-JZGlitchLabel_Tests-acknowledgements.plist │ │ ├── Pods-JZGlitchLabel_Tests-dummy.m │ │ ├── Pods-JZGlitchLabel_Tests-frameworks.sh │ │ ├── Pods-JZGlitchLabel_Tests-resources.sh │ │ ├── Pods-JZGlitchLabel_Tests-umbrella.h │ │ ├── Pods-JZGlitchLabel_Tests.debug.xcconfig │ │ ├── Pods-JZGlitchLabel_Tests.modulemap │ │ └── Pods-JZGlitchLabel_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── JZGlitchLabel.podspec ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── JZGlitchLabel.h │ └── JZGlitchLabel.m ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/.travis.yml -------------------------------------------------------------------------------- /DemoPic/JZGlitchLabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/DemoPic/JZGlitchLabel.gif -------------------------------------------------------------------------------- /DemoPic/JZGlitchLabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/DemoPic/JZGlitchLabel.jpg -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel-Example.xcscheme -------------------------------------------------------------------------------- /Example/JZGlitchLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZAppDelegate.h -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZAppDelegate.m -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZGlitchLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZGlitchLabel-Info.plist -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZGlitchLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZGlitchLabel-Prefix.pch -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZViewController.h -------------------------------------------------------------------------------- /Example/JZGlitchLabel/JZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/JZViewController.m -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/JZGlitchLabel/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/Main.storyboard -------------------------------------------------------------------------------- /Example/JZGlitchLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JZGlitchLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/JZGlitchLabel/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JZGlitchLabel/JZGlitchLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JZGlitchLabel.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JZGlitchLabel.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Local Podspecs/JZGlitchLabel.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/JZGlitchLabel.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/JZGlitchLabel/JZGlitchLabel.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Example/Pods-JZGlitchLabel_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Pods/Target Support Files/Pods-JZGlitchLabel_Tests/Pods-JZGlitchLabel_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JZGlitchLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/JZGlitchLabel.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/JZGlitchLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Pod/Classes/JZGlitchLabel.h -------------------------------------------------------------------------------- /Pod/Classes/JZGlitchLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/Pod/Classes/JZGlitchLabel.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZGlitchLabel/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------