├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── Example ├── Podfile ├── Podfile.lock ├── Tests │ ├── Classes │ │ ├── MyTextView.swift │ │ ├── NavigationFieldDelegateEmptyImplementation.swift │ │ └── NavigationFieldDelegateFullImplementation.swift │ ├── Info.plist │ ├── NavigationFieldToolbar.swift │ └── UITextField+NavigationTests.swift ├── UITextField-Navigation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── UITextField_Navigation_Tests.xcscheme ├── UITextField-Navigation.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── UITextField-Navigation │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ObjectiveCViewController.h │ ├── ObjectiveCViewController.m │ ├── UITextField-Navigation_Example-Bridging-Header.h │ ├── ViewController.swift │ └── he.lproj │ └── Main.strings ├── LICENSE ├── Package.swift ├── README.md ├── Screenshots ├── screenshot0.png ├── screenshot1.png ├── screenshot2.gif ├── screenshot3.png └── screenshot4.png ├── UITextField-Navigation.podspec ├── UITextField-Navigation ├── Classes │ ├── Config.swift │ ├── NavigationField.swift │ ├── NavigationFieldImplementations.swift │ ├── NavigationFieldInternal.swift │ ├── NavigationFieldToolbar.swift │ ├── NavigationFieldToolbarButtonItem.swift │ └── WeakObjectContainer.swift ├── UITextField-Navigation.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── UITextField-Navigation.xcscheme └── UITextField-Navigation │ ├── Info.plist │ └── UITextField-Navigation.h └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Classes/MyTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/Classes/MyTextView.swift -------------------------------------------------------------------------------- /Example/Tests/Classes/NavigationFieldDelegateEmptyImplementation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/Classes/NavigationFieldDelegateEmptyImplementation.swift -------------------------------------------------------------------------------- /Example/Tests/Classes/NavigationFieldDelegateFullImplementation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/Classes/NavigationFieldDelegateFullImplementation.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/NavigationFieldToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/NavigationFieldToolbar.swift -------------------------------------------------------------------------------- /Example/Tests/UITextField+NavigationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/Tests/UITextField+NavigationTests.swift -------------------------------------------------------------------------------- /Example/UITextField-Navigation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UITextField-Navigation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UITextField-Navigation.xcodeproj/xcshareddata/xcschemes/UITextField_Navigation_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation.xcodeproj/xcshareddata/xcschemes/UITextField_Navigation_Tests.xcscheme -------------------------------------------------------------------------------- /Example/UITextField-Navigation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UITextField-Navigation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/UITextField-Navigation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/AppDelegate.swift -------------------------------------------------------------------------------- /Example/UITextField-Navigation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/UITextField-Navigation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/UITextField-Navigation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UITextField-Navigation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/Info.plist -------------------------------------------------------------------------------- /Example/UITextField-Navigation/ObjectiveCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/ObjectiveCViewController.h -------------------------------------------------------------------------------- /Example/UITextField-Navigation/ObjectiveCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/ObjectiveCViewController.m -------------------------------------------------------------------------------- /Example/UITextField-Navigation/UITextField-Navigation_Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/UITextField-Navigation_Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/UITextField-Navigation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/ViewController.swift -------------------------------------------------------------------------------- /Example/UITextField-Navigation/he.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Example/UITextField-Navigation/he.lproj/Main.strings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Screenshots/screenshot0.png -------------------------------------------------------------------------------- /Screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Screenshots/screenshot1.png -------------------------------------------------------------------------------- /Screenshots/screenshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Screenshots/screenshot2.gif -------------------------------------------------------------------------------- /Screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Screenshots/screenshot3.png -------------------------------------------------------------------------------- /Screenshots/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/Screenshots/screenshot4.png -------------------------------------------------------------------------------- /UITextField-Navigation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation.podspec -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/Config.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/NavigationField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/NavigationField.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/NavigationFieldImplementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/NavigationFieldImplementations.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/NavigationFieldInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/NavigationFieldInternal.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/NavigationFieldToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/NavigationFieldToolbar.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/NavigationFieldToolbarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/NavigationFieldToolbarButtonItem.swift -------------------------------------------------------------------------------- /UITextField-Navigation/Classes/WeakObjectContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/Classes/WeakObjectContainer.swift -------------------------------------------------------------------------------- /UITextField-Navigation/UITextField-Navigation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/UITextField-Navigation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UITextField-Navigation/UITextField-Navigation.xcodeproj/xcshareddata/xcschemes/UITextField-Navigation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/UITextField-Navigation.xcodeproj/xcshareddata/xcschemes/UITextField-Navigation.xcscheme -------------------------------------------------------------------------------- /UITextField-Navigation/UITextField-Navigation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/UITextField-Navigation/Info.plist -------------------------------------------------------------------------------- /UITextField-Navigation/UITextField-Navigation/UITextField-Navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-Pham/UITextField-Navigation/HEAD/UITextField-Navigation/UITextField-Navigation/UITextField-Navigation.h -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------