├── .gitattributes ├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── .swift-version ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── RimhTypingLetters.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-RimhTypingLetters_Example │ │ ├── Info.plist │ │ ├── Pods-RimhTypingLetters_Example-acknowledgements.markdown │ │ ├── Pods-RimhTypingLetters_Example-acknowledgements.plist │ │ ├── Pods-RimhTypingLetters_Example-dummy.m │ │ ├── Pods-RimhTypingLetters_Example-frameworks.sh │ │ ├── Pods-RimhTypingLetters_Example-resources.sh │ │ ├── Pods-RimhTypingLetters_Example-umbrella.h │ │ ├── Pods-RimhTypingLetters_Example.debug.xcconfig │ │ ├── Pods-RimhTypingLetters_Example.modulemap │ │ └── Pods-RimhTypingLetters_Example.release.xcconfig │ │ ├── Pods-RimhTypingLetters_Tests │ │ ├── Info.plist │ │ ├── Pods-RimhTypingLetters_Tests-acknowledgements.markdown │ │ ├── Pods-RimhTypingLetters_Tests-acknowledgements.plist │ │ ├── Pods-RimhTypingLetters_Tests-dummy.m │ │ ├── Pods-RimhTypingLetters_Tests-frameworks.sh │ │ ├── Pods-RimhTypingLetters_Tests-resources.sh │ │ ├── Pods-RimhTypingLetters_Tests-umbrella.h │ │ ├── Pods-RimhTypingLetters_Tests.debug.xcconfig │ │ ├── Pods-RimhTypingLetters_Tests.modulemap │ │ └── Pods-RimhTypingLetters_Tests.release.xcconfig │ │ └── RimhTypingLetters │ │ ├── Info.plist │ │ ├── RimhTypingLetters-dummy.m │ │ ├── RimhTypingLetters-prefix.pch │ │ ├── RimhTypingLetters-umbrella.h │ │ ├── RimhTypingLetters.modulemap │ │ └── RimhTypingLetters.xcconfig ├── RimhTypingLetters.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RimhTypingLetters-Example.xcscheme ├── RimhTypingLetters.xcworkspace │ └── contents.xcworkspacedata ├── RimhTypingLetters │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── RimhTypingLetters.podspec ├── RimhTypingLetters ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TypingLetterUITextView.swift │ └── UILabel+RimhTypingLetter.swift └── _Pods.xcodeproj /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh linguist-language=Swift 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | echo "4.0" > .swift-version 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/RimhTypingLetters.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Local Podspecs/RimhTypingLetters.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Example/Pods-RimhTypingLetters_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/Pods-RimhTypingLetters_Tests/Pods-RimhTypingLetters_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Pods/Target Support Files/RimhTypingLetters/RimhTypingLetters.xcconfig -------------------------------------------------------------------------------- /Example/RimhTypingLetters.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RimhTypingLetters.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RimhTypingLetters.xcodeproj/xcshareddata/xcschemes/RimhTypingLetters-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters.xcodeproj/xcshareddata/xcschemes/RimhTypingLetters-Example.xcscheme -------------------------------------------------------------------------------- /Example/RimhTypingLetters.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RimhTypingLetters/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/AppDelegate.swift -------------------------------------------------------------------------------- /Example/RimhTypingLetters/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/RimhTypingLetters/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/RimhTypingLetters/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RimhTypingLetters/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/Info.plist -------------------------------------------------------------------------------- /Example/RimhTypingLetters/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/RimhTypingLetters/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/README.md -------------------------------------------------------------------------------- /RimhTypingLetters.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/RimhTypingLetters.podspec -------------------------------------------------------------------------------- /RimhTypingLetters/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RimhTypingLetters/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RimhTypingLetters/Classes/TypingLetterUITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/RimhTypingLetters/Classes/TypingLetterUITextView.swift -------------------------------------------------------------------------------- /RimhTypingLetters/Classes/UILabel+RimhTypingLetter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rimh/RimhTypingLetters/HEAD/RimhTypingLetters/Classes/UILabel+RimhTypingLetter.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------