├── .gitignore ├── .travis.yml ├── Example ├── OTPTextField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── OTPTextField-Example.xcscheme ├── OTPTextField.xcworkspace │ └── contents.xcworkspacedata ├── OTPTextField │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── OTPAppDelegate.h │ ├── OTPAppDelegate.m │ ├── OTPTextField-Info.plist │ ├── OTPTextField-Prefix.pch │ ├── OTPViewController.h │ ├── OTPViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Pods │ ├── Local Podspecs │ │ └── OTPTextField.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OTPTextField.xcscheme │ └── Target Support Files │ │ ├── OTPTextField │ │ ├── Info.plist │ │ ├── OTPTextField-dummy.m │ │ ├── OTPTextField-prefix.pch │ │ ├── OTPTextField-umbrella.h │ │ ├── OTPTextField.modulemap │ │ └── OTPTextField.xcconfig │ │ ├── Pods-OTPTextField_Example │ │ ├── Info.plist │ │ ├── Pods-OTPTextField_Example-acknowledgements.markdown │ │ ├── Pods-OTPTextField_Example-acknowledgements.plist │ │ ├── Pods-OTPTextField_Example-dummy.m │ │ ├── Pods-OTPTextField_Example-frameworks.sh │ │ ├── Pods-OTPTextField_Example-resources.sh │ │ ├── Pods-OTPTextField_Example-umbrella.h │ │ ├── Pods-OTPTextField_Example.debug.xcconfig │ │ ├── Pods-OTPTextField_Example.modulemap │ │ └── Pods-OTPTextField_Example.release.xcconfig │ │ └── Pods-OTPTextField_Tests │ │ ├── Info.plist │ │ ├── Pods-OTPTextField_Tests-acknowledgements.markdown │ │ ├── Pods-OTPTextField_Tests-acknowledgements.plist │ │ ├── Pods-OTPTextField_Tests-dummy.m │ │ ├── Pods-OTPTextField_Tests-frameworks.sh │ │ ├── Pods-OTPTextField_Tests-resources.sh │ │ ├── Pods-OTPTextField_Tests-umbrella.h │ │ ├── Pods-OTPTextField_Tests.debug.xcconfig │ │ ├── Pods-OTPTextField_Tests.modulemap │ │ └── Pods-OTPTextField_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── OTPTextField.gif ├── OTPTextField.podspec ├── OTPTextField ├── OTPTextField.h └── OTPTextField.m ├── OTPTextFieldManual.gif ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/OTPTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/OTPTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OTPTextField.xcodeproj/xcshareddata/xcschemes/OTPTextField-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField.xcodeproj/xcshareddata/xcschemes/OTPTextField-Example.xcscheme -------------------------------------------------------------------------------- /Example/OTPTextField.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OTPTextField/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/OTPTextField/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/OTPTextField/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/OTPTextField/OTPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPAppDelegate.h -------------------------------------------------------------------------------- /Example/OTPTextField/OTPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPAppDelegate.m -------------------------------------------------------------------------------- /Example/OTPTextField/OTPTextField-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPTextField-Info.plist -------------------------------------------------------------------------------- /Example/OTPTextField/OTPTextField-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPTextField-Prefix.pch -------------------------------------------------------------------------------- /Example/OTPTextField/OTPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPViewController.h -------------------------------------------------------------------------------- /Example/OTPTextField/OTPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/OTPViewController.m -------------------------------------------------------------------------------- /Example/OTPTextField/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/OTPTextField/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/OTPTextField/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/OTPTextField.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Local Podspecs/OTPTextField.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/OTPTextField.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/OTPTextField.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/OTPTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/OTPTextField-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/OTPTextField-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/OTPTextField-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/OTPTextField-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/OTPTextField-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/OTPTextField.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/OTPTextField.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OTPTextField/OTPTextField.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/OTPTextField/OTPTextField.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Example/Pods-OTPTextField_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Pods/Target Support Files/Pods-OTPTextField_Tests/Pods-OTPTextField_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/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/kfit-dev/OTPTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /OTPTextField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/OTPTextField.gif -------------------------------------------------------------------------------- /OTPTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/OTPTextField.podspec -------------------------------------------------------------------------------- /OTPTextField/OTPTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/OTPTextField/OTPTextField.h -------------------------------------------------------------------------------- /OTPTextField/OTPTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/OTPTextField/OTPTextField.m -------------------------------------------------------------------------------- /OTPTextFieldManual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/OTPTextFieldManual.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfit-dev/OTPTextField/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------