我開發了ipad應用程序。在那裏我有下載照片選項。當我們點擊下載按鈕時,我需要將照片保存在iPad照片文件夾中。任何人都可以請幫我解決如何保存從iPad應用程序喲iPad設備相冊的照片。Ipad App照片保存在照片文件夾中
謝謝, Prabhas。
我開發了ipad應用程序。在那裏我有下載照片選項。當我們點擊下載按鈕時,我需要將照片保存在iPad照片文件夾中。任何人都可以請幫我解決如何保存從iPad應用程序喲iPad設備相冊的照片。Ipad App照片保存在照片文件夾中
謝謝, Prabhas。
首先添加#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);
}
有一個最短路徑(設備上都IOS模擬器和iOS上測試)
您可以使用此功能:
UIImageWriteToSavedPhotosAlbum(的UIImage * image,id completionTarget,SEL completionSelector,void * contextInfo);
如果你想在圖像完成保存時得到通知,你只需要completionTarget,completionSelector和contextInfo,否則你可以傳入nil。
,如果你想將它保存爲自定義的相冊你可以通過一個很好的教程,我發現在
http://www.touch-code-magazine.com/ios5-saving-photos-in-custom-photo-album-category-for-download/
謝謝帕特爾,我會試試這個 – Balakrishna 2013-02-28 10:45:40
好吧,但是不要忘記添加#import –
iPatel
2013-02-28 10:46:19
非常感謝你Patel它的工作 – Balakrishna 2013-02-28 11:47:35