This project is a Swift translation of the PEPhotoCropEditor. Version 1.0 doesn't add anything new, or fixes existing bugs. I want to slowly iterate on that, and if you want to contribute, let me know.
To run the example project, clone the repo, and open the 'Example/Example.xcodeproj' file.
This component is written using Swift and Dynamic Frameworks, so iOS 8.x is required. However you may want to manually import the source files into your project, if you need to support 7.x.
ProgressButton is available through Carthage. To install it, simply add the following line to your Cartfile:
github "sprint84/CropViewController" ~> 1.2
To install the carthage
tool on your system, please download and run the Carthage.pkg
file for the latest release, then follow the on-screen instructions.
Alternately, you can use Homebrew and install the carthage
tool on your system simply by running brew update and brew install carthage
.
For further details, please visit the Carthage Github page
First import the module into your project.
import CropViewController
You may use the view controller component, with the default buttons and appearance. We will add customization properties in the future.
let controller = CropViewController()
controller.delegate = self
controller.image = image
let navController = UINavigationController(rootViewController: controller)
presentViewController(navController, animated: true, completion: nil)
Alternatively, you can use the crop view directly, and incorporate it in your existing UI.
let cropView = CropView(frame: bounds)
view.addSubview(cropView)
Using the delegate method on the View Controller:
func cropViewController(controller: CropViewController, didFinishCroppingImage image: UIImage) {
controller.dismissViewControllerAnimated(true, completion: nil)
imageView.image = image
}
Retrieving directly from the crop view
let croppedImage = cropView.croppedImage
Coming in the near future...
Reefactor, Inc., [email protected]
ProgressButton is available under the MIT license. See the LICENSE file for more info.