imagePickerController didFinishPickingImage not being called.

Posted by MegaEduX on Stack Overflow See other posts from Stack Overflow or by MegaEduX
Published on 2010-06-07T21:40:42Z Indexed on 2010/06/07 21:42 UTC
Read the original article Hit count: 294

Hello,

I am trying to save an image I take from a UIImagePickerController but I am not, well, being able to.

This is the code I am trying to use to save the image:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo {
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil); }

That function is simply not being called.

Any idea?

© Stack Overflow or respective owner

Related posts about cocoa-touch

Related posts about iphone-sdk-3.0