我想在ios 5中使用我自己的图像名将图像保存到相机胶卷。我正在使用AV Foundation访问相机功能。请帮我解决可能的解决方案。
答案 0 :(得分:0)
// Image to save
UIImage *img = [UIImage imageNamed:@"ImageName.png"];
// Request to save the image to camera roll
UIImageWriteToSavedPhotosAlbum(img, self,
@selector(image:didFinishSavingWithError:contextInfo:), nil);
希望这会有所帮助..