Ipad App Photo保存在Photos文件夹中

时间:2013-02-28 10:40:01

标签: ios ipad

我开发了ipad应用程序。在那我有下载照片选项。点击下载按钮,我需要在ipad Photos文件夹中保存照片。任何人都可以帮我解决如何从ipad app yo ipad设备相册中保存照片。

谢谢, 普拉巴斯。

2 个答案:

答案 0 :(得分:0)

首先添加#import <QuartzCore/QuartzCore.h>

-(void)buttonMethod:(UIButton *) Sender
{
                UIGraphicsBeginImageContext(self.imageView.frame.size);
                [self.imageView.layer renderInContext:UIGraphicsGetCurrentContext()];
                UIImage *attachimage = [[UIImage alloc]initWithData:[NSData data]];
                UIImage *viImage=UIGraphicsGetImageFromCurrentImageContext();
                UIGraphicsEndImageContext();
                attachimage = viImage;
                UIImageWriteToSavedPhotosAlbum(viImage, nil, nil, nil);
}

答案 1 :(得分:0)

有一种最短的方法(在ios模拟器和ios设备上测试)

  1. 您可以使用此功能:

    UIImageWriteToSavedPhotosAlbum(UIImage * image,id completionTarget,SEL completionSelector,void * contextInfo);

  2. 如果您希望在保存图像时收到通知,则只需要completionTarget,completionSelector和contextInfo,否则您可以传入nil。

    如果你想将它保存到自定义相册,你可以通过我在

    找到的好教程
      

    http://www.touch-code-magazine.com/ios5-saving-photos-in-custom-photo-album-category-for-download/