Reputation: 27
Is it possible to implement the iOS 5 > 'Photos' app cropping mechanism? This is exactly what I need for my app. I need to allow a user to pick an image and crop that photo using something like what the 'Photos' app provides. Is there a library for this? Can I hook directly to it from the SDK? What are my options here? I have looked through Google and Github with no luck.
Upvotes: 0
Views: 406
Reputation: 906
The standard SDK provides a way to get a picture, let the user crop it, and import it into your App, See: http://developer.apple.com/library/IOS/#documentation/AudioVideo/Conceptual/CameraAndPhotoLib_TopicsForIOS/Articles/TakingPicturesAndMovies.html
Upvotes: 1