I do not know much about Objective-C
.
I need to save the image in the gallery to custom name album and i used Canvas2ImagePlugin
but image save to album camera roll.
Canvas2ImagePlugin
using:
UIImage* image = [[[UIImage alloc] initWithData:imageData] autorelease];
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
How to use the name album in the function UIImageWriteToSavedPhotosAlbum
? Or use another function?