This is what I use:
Code:
UIImageWriteToSavedPhotosAlbum([self image], self, @selector(imageSavedToPhotosAlbum: didFinishSavingWithError: contextInfo:), nil);
Code:
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {
if (!error) {
//Success
} else {
//Error
}
}