├── .gitignore ├── JPSImagePickerController.podspec ├── JPSImagePickerController ├── JPSCameraButton.h ├── JPSCameraButton.m ├── JPSImagePickerController.bundle │ ├── camera_switch_button.png │ ├── camera_switch_button@2x.png │ ├── flash_button.png │ └── flash_button@2x.png ├── JPSImagePickerController.h ├── JPSImagePickerController.m ├── JPSVolumeButtonHandler.h ├── JPSVolumeButtonHandler.m ├── UIImage+DrawBlock.h └── UIImage+DrawBlock.m ├── JPSImagePickerControllerDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── JPSImagePickerControllerDemo ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── JPSAppDelegate.h ├── JPSAppDelegate.m ├── JPSImagePickerControllerDemo-Info.plist ├── JPSImagePickerControllerDemo-Prefix.pch ├── JPSViewController.h ├── JPSViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── JPSImagePickerControllerDemoTests ├── JPSImagePickerControllerDemoTests-Info.plist ├── JPSImagePickerControllerDemoTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE.txt ├── README.md └── screenshots.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/.gitignore -------------------------------------------------------------------------------- /JPSImagePickerController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController.podspec -------------------------------------------------------------------------------- /JPSImagePickerController/JPSCameraButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSCameraButton.h -------------------------------------------------------------------------------- /JPSImagePickerController/JPSCameraButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSCameraButton.m -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.bundle/camera_switch_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.bundle/camera_switch_button.png -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.bundle/camera_switch_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.bundle/camera_switch_button@2x.png -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.bundle/flash_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.bundle/flash_button.png -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.bundle/flash_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.bundle/flash_button@2x.png -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.h -------------------------------------------------------------------------------- /JPSImagePickerController/JPSImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSImagePickerController.m -------------------------------------------------------------------------------- /JPSImagePickerController/JPSVolumeButtonHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSVolumeButtonHandler.h -------------------------------------------------------------------------------- /JPSImagePickerController/JPSVolumeButtonHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/JPSVolumeButtonHandler.m -------------------------------------------------------------------------------- /JPSImagePickerController/UIImage+DrawBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/UIImage+DrawBlock.h -------------------------------------------------------------------------------- /JPSImagePickerController/UIImage+DrawBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerController/UIImage+DrawBlock.m -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSAppDelegate.h -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSAppDelegate.m -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSImagePickerControllerDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSImagePickerControllerDemo-Info.plist -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSImagePickerControllerDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSImagePickerControllerDemo-Prefix.pch -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSViewController.h -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/JPSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/JPSViewController.m -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JPSImagePickerControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemo/main.m -------------------------------------------------------------------------------- /JPSImagePickerControllerDemoTests/JPSImagePickerControllerDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemoTests/JPSImagePickerControllerDemoTests-Info.plist -------------------------------------------------------------------------------- /JPSImagePickerControllerDemoTests/JPSImagePickerControllerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/JPSImagePickerControllerDemoTests/JPSImagePickerControllerDemoTests.m -------------------------------------------------------------------------------- /JPSImagePickerControllerDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/README.md -------------------------------------------------------------------------------- /screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSImagePickerController/HEAD/screenshots.png --------------------------------------------------------------------------------