In my application the requirement is to grab image from the photo library or camera and if user wants to crop the image then he should be able to do it but I do not have any idea how to crop the image fetched from camera or photo library.
if you have any idea then share it...
I have done the same thing in Mac, probably you could try that out,
May be at some places , you might need to convert NS to UI to make it run for iOS
You can crop your image by using UIGraphicsGetImageFromCurrentImageContext
The idea is to draw your image to a cropped graphic context using CoreGraphics and then exporting the current context to an image.
Try something like that :
hope this helps, Vincent