简体   繁体   中英

Image save issue in custom album as well as default Camera Roll in iphone

I want to save image in Custom Album from my App. i know it possible in iOS 5 and up.

i am done with this functionality with the reference link

From the reference link image save successfully in Custom Album but issue is that image Save in Custom Album as well as Camera roll . How can i ignore to save in Two folder ?

any one have idea about that ? Thanks in Advance !!!

You use the UIImageWriteToSavedPhotosAlbum() function.

//ViewController.m
- (IBAction)onClickSavePhoto:(id)sender{

    UIImageWriteToSavedPhotosAlbum(imageToBeSaved, nil, nil, nil);
}

Found this in Stackoverflow :) How can I save an image to the camera roll?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM