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?