Section 3, page 709, the 3rd paragraph states, The info dictionary contains data describing the image that the user picked. You use the UIImagePickerControllerEditedImage key to retrieve a UIImage object that contains the final image after the user moved and/or scaled it. (You can also get the original
image if you wish, using a different key.)
Changed the key to UIImagePickerControllerOriginalImage but didn’t see any difference as the app doesn’t make any change to the image with the UIImagePickerController, though it does resizing after picked the image. Tried to find a way to edit the image with the UIImage picker controller such as cropping, scaling, etc. but neither my simulator nor my real device has that option.
Do you have an example or any suggestion how to edit an image with UIImagePickerController so that we can see some difference with each key, UIImagePickerControllerOriginalImage and UIImagePickerControllerEditedImage?
Many thanks.