├── .gitignore ├── .travis.yml ├── CropPickerController.podspec ├── CropPickerController ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ArrowView.swift │ ├── BezierPath+.swift │ ├── CameraView.swift │ ├── CheckBoxView.swift │ ├── CheckView.swift │ ├── CropPickerController.swift │ ├── Double+.swift │ ├── ImageAsset.swift │ ├── PermissionHelper.swift │ ├── PictureCell.swift │ ├── ProgressView.swift │ ├── TitleButton.swift │ ├── UIImage+.swift │ └── UIView+.swift ├── Example ├── CropPickerController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CropPickerController-Example.xcscheme ├── CropPickerController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CropPickerController │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── CropPickerView │ │ ├── CropPickerView │ │ │ └── Classes │ │ │ │ ├── BezierPath+.swift │ │ │ │ ├── CropDimView.swift │ │ │ │ ├── CropPickerView.swift │ │ │ │ ├── CropResult.swift │ │ │ │ ├── CropView.swift │ │ │ │ ├── LineButton.swift │ │ │ │ ├── NSLayoutConstraint+.swift │ │ │ │ ├── UIImage+.swift │ │ │ │ ├── UIImageView+.swift │ │ │ │ └── UIView+.swift │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs │ │ └── CropPickerController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CropPickerController │ │ ├── CropPickerController-Info.plist │ │ ├── CropPickerController-dummy.m │ │ ├── CropPickerController-prefix.pch │ │ ├── CropPickerController-umbrella.h │ │ ├── CropPickerController.debug.xcconfig │ │ ├── CropPickerController.modulemap │ │ ├── CropPickerController.release.xcconfig │ │ ├── CropPickerController.xcconfig │ │ └── Info.plist │ │ ├── CropPickerView │ │ ├── CropPickerView-Info.plist │ │ ├── CropPickerView-dummy.m │ │ ├── CropPickerView-prefix.pch │ │ ├── CropPickerView-umbrella.h │ │ ├── CropPickerView.debug.xcconfig │ │ ├── CropPickerView.modulemap │ │ ├── CropPickerView.release.xcconfig │ │ ├── CropPickerView.xcconfig │ │ └── Info.plist │ │ ├── Pods-CropPickerController_Example │ │ ├── Info.plist │ │ ├── Pods-CropPickerController_Example-Info.plist │ │ ├── Pods-CropPickerController_Example-acknowledgements.markdown │ │ ├── Pods-CropPickerController_Example-acknowledgements.plist │ │ ├── Pods-CropPickerController_Example-dummy.m │ │ ├── Pods-CropPickerController_Example-frameworks.sh │ │ ├── Pods-CropPickerController_Example-resources.sh │ │ ├── Pods-CropPickerController_Example-umbrella.h │ │ ├── Pods-CropPickerController_Example.debug.xcconfig │ │ ├── Pods-CropPickerController_Example.modulemap │ │ └── Pods-CropPickerController_Example.release.xcconfig │ │ └── Pods-CropPickerController_Tests │ │ ├── Info.plist │ │ ├── Pods-CropPickerController_Tests-Info.plist │ │ ├── Pods-CropPickerController_Tests-acknowledgements.markdown │ │ ├── Pods-CropPickerController_Tests-acknowledgements.plist │ │ ├── Pods-CropPickerController_Tests-dummy.m │ │ ├── Pods-CropPickerController_Tests-frameworks.sh │ │ ├── Pods-CropPickerController_Tests-resources.sh │ │ ├── Pods-CropPickerController_Tests-umbrella.h │ │ ├── Pods-CropPickerController_Tests.debug.xcconfig │ │ ├── Pods-CropPickerController_Tests.modulemap │ │ └── Pods-CropPickerController_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── img ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif └── info.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/.travis.yml -------------------------------------------------------------------------------- /CropPickerController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController.podspec -------------------------------------------------------------------------------- /CropPickerController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CropPickerController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CropPickerController/Classes/ArrowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/ArrowView.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/BezierPath+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/BezierPath+.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/CameraView.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/CheckBoxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/CheckBoxView.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/CheckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/CheckView.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/CropPickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/CropPickerController.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/Double+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/Double+.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/ImageAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/ImageAsset.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/PermissionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/PermissionHelper.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/PictureCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/PictureCell.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/ProgressView.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/TitleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/TitleButton.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/UIImage+.swift -------------------------------------------------------------------------------- /CropPickerController/Classes/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/CropPickerController/Classes/UIView+.swift -------------------------------------------------------------------------------- /Example/CropPickerController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CropPickerController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CropPickerController.xcodeproj/xcshareddata/xcschemes/CropPickerController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController.xcodeproj/xcshareddata/xcschemes/CropPickerController-Example.xcscheme -------------------------------------------------------------------------------- /Example/CropPickerController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CropPickerController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CropPickerController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CropPickerController/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CropPickerController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CropPickerController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CropPickerController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/Info.plist -------------------------------------------------------------------------------- /Example/CropPickerController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/CropPickerController/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/BezierPath+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/BezierPath+.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/CropDimView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/CropDimView.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/CropPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/CropPickerView.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/CropResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/CropResult.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/CropView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/CropView.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/LineButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/LineButton.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/NSLayoutConstraint+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/NSLayoutConstraint+.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/UIImage+.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/UIImageView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/UIImageView+.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/CropPickerView/Classes/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/CropPickerView/Classes/UIView+.swift -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/LICENSE -------------------------------------------------------------------------------- /Example/Pods/CropPickerView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/CropPickerView/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CropPickerController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Local Podspecs/CropPickerController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/CropPickerController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/CropPickerController.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerController/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/CropPickerView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Example/Pods-CropPickerController_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Pods/Target Support Files/Pods-CropPickerController_Tests/Pods-CropPickerController_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /img/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/img/1.gif -------------------------------------------------------------------------------- /img/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/img/2.gif -------------------------------------------------------------------------------- /img/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/img/3.gif -------------------------------------------------------------------------------- /img/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/img/4.gif -------------------------------------------------------------------------------- /img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerController/HEAD/img/info.png --------------------------------------------------------------------------------