Friday, July 22, 2011

Saving images into Photo Gallary


Image is object of UIImage.

UIImageWriteToSavedPhotosAlbum(Image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);



The call back signature should same as the below otherwise we will not get call back


- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo


{


}



No comments: