Quote:
Originally Posted by Noise
What needs to be done to allow a user to pick an image from their photo library in the Photos App, and load it into a UIImageView?
Is it possible to set up a "move and scale" type thing - similar to when you set a background on your device - for this as well?
I'd appreciate any help!
|
Hi there,
You should be able to select an image using the UIImagePickerController class. For scaling and moving, I'd select the original image, scale in a new UIImage object and save that back as a copy (not destroying the original image in the users library).
Cheers,
Coulls