├── .gitignore ├── Example ├── PickerButtonSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PickerButtonSample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── PickerButtonSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Images ├── button.jpg ├── inputview.jpg ├── picker.gif ├── picker.jpg └── storyboard.png ├── LICENSE ├── PickerButton.podspec ├── PickerButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── PickerButton.xcscheme ├── PickerButton ├── Info.plist ├── Internal │ ├── DelegateProxy.swift │ └── UIPickerViewDelegateProxy.swift ├── PickerButton.h └── PickerButton.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/PickerButtonSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PickerButtonSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PickerButtonSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PickerButtonSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PickerButtonSample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PickerButtonSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PickerButtonSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PickerButtonSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/PickerButtonSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/PickerButtonSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PickerButtonSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/Info.plist -------------------------------------------------------------------------------- /Example/PickerButtonSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Example/PickerButtonSample/ViewController.swift -------------------------------------------------------------------------------- /Images/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Images/button.jpg -------------------------------------------------------------------------------- /Images/inputview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Images/inputview.jpg -------------------------------------------------------------------------------- /Images/picker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Images/picker.gif -------------------------------------------------------------------------------- /Images/picker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Images/picker.jpg -------------------------------------------------------------------------------- /Images/storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/Images/storyboard.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/LICENSE -------------------------------------------------------------------------------- /PickerButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton.podspec -------------------------------------------------------------------------------- /PickerButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PickerButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PickerButton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PickerButton.xcodeproj/xcshareddata/xcschemes/PickerButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton.xcodeproj/xcshareddata/xcschemes/PickerButton.xcscheme -------------------------------------------------------------------------------- /PickerButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton/Info.plist -------------------------------------------------------------------------------- /PickerButton/Internal/DelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton/Internal/DelegateProxy.swift -------------------------------------------------------------------------------- /PickerButton/Internal/UIPickerViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton/Internal/UIPickerViewDelegateProxy.swift -------------------------------------------------------------------------------- /PickerButton/PickerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton/PickerButton.h -------------------------------------------------------------------------------- /PickerButton/PickerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/PickerButton/PickerButton.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/PickerButton/HEAD/README.md --------------------------------------------------------------------------------