├── .gitignore ├── .travis.yml ├── Example ├── FlashingLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── FlashingLabel-Example.xcscheme ├── FlashingLabel.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── FlashingLabel │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── FlashingLabel.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── FlashingLabel │ │ ├── FlashingLabel-Info.plist │ │ ├── FlashingLabel-dummy.m │ │ ├── FlashingLabel-prefix.pch │ │ ├── FlashingLabel-umbrella.h │ │ ├── FlashingLabel.modulemap │ │ └── FlashingLabel.xcconfig │ │ ├── Pods-FlashingLabel_Example │ │ ├── Pods-FlashingLabel_Example-Info.plist │ │ ├── Pods-FlashingLabel_Example-acknowledgements.markdown │ │ ├── Pods-FlashingLabel_Example-acknowledgements.plist │ │ ├── Pods-FlashingLabel_Example-dummy.m │ │ ├── Pods-FlashingLabel_Example-frameworks.sh │ │ ├── Pods-FlashingLabel_Example-umbrella.h │ │ ├── Pods-FlashingLabel_Example.debug.xcconfig │ │ ├── Pods-FlashingLabel_Example.modulemap │ │ └── Pods-FlashingLabel_Example.release.xcconfig │ │ └── Pods-FlashingLabel_Tests │ │ ├── Pods-FlashingLabel_Tests-Info.plist │ │ ├── Pods-FlashingLabel_Tests-acknowledgements.markdown │ │ ├── Pods-FlashingLabel_Tests-acknowledgements.plist │ │ ├── Pods-FlashingLabel_Tests-dummy.m │ │ ├── Pods-FlashingLabel_Tests-umbrella.h │ │ ├── Pods-FlashingLabel_Tests.debug.xcconfig │ │ ├── Pods-FlashingLabel_Tests.modulemap │ │ └── Pods-FlashingLabel_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── FlashingLabel.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── FlashingLabel │ ├── Assets │ └── .gitkeep │ └── Classes │ ├── .gitkeep │ └── FlashingLabel.swift ├── Tests └── FlashingLabelTests │ └── FlashingLabelTests.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/FlashingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/FlashingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FlashingLabel.xcodeproj/xcshareddata/xcschemes/FlashingLabel-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel.xcodeproj/xcshareddata/xcschemes/FlashingLabel-Example.xcscheme -------------------------------------------------------------------------------- /Example/FlashingLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FlashingLabel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/FlashingLabel/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/AppDelegate.swift -------------------------------------------------------------------------------- /Example/FlashingLabel/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/FlashingLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/FlashingLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/FlashingLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/Info.plist -------------------------------------------------------------------------------- /Example/FlashingLabel/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/FlashingLabel/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/FlashingLabel.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Local Podspecs/FlashingLabel.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FlashingLabel/FlashingLabel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/FlashingLabel/FlashingLabel.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Example/Pods-FlashingLabel_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Pods/Target Support Files/Pods-FlashingLabel_Tests/Pods-FlashingLabel_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /FlashingLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/FlashingLabel.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FlashingLabel/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/FlashingLabel/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/FlashingLabel/Classes/FlashingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Sources/FlashingLabel/Classes/FlashingLabel.swift -------------------------------------------------------------------------------- /Tests/FlashingLabelTests/FlashingLabelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/FlashingLabel/HEAD/Tests/FlashingLabelTests/FlashingLabelTests.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------