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