我有一张图片,我想将该图片保存到自定义相册中。
我的代码适用于 Iphone,但不适用于 iPad。
self.library = [[ALAssetsLibrary alloc] init];
[self.library saveImage:imageShow.image toAlbum:@"APP NAME" withCompletionBlock:^(NSError *error) {
if (error!=nil) {
NSLog(@"Big error: %@", [error description]);
}
}];
请帮帮我
谢谢帮忙。。