// 完了を知らせるメソッド
- (void) savingImageIsFinished:(UIImage *)_image
didFinishSavingWithError:(NSError *)_error
contextInfo:(void *)_contextInfo
{
NSLog(@"finished"); //仮にコンソールに表示する
}
// 保存処理を持つメソッド
-(void) hogehoge
{
...略...
// savedImageをライブラリに保存する
UIImageWriteToSavedPhotosAlbum(savedImage, self, @selector(savingImageIsFinished:didFinishSavingWithError:contextInfo:), nil);
...略...
}
これで小一時間ほど悩んでましたが,公式ドキュメントに思いっきり書いてありました.始めからよく読んでおけばよかった.
The use of the completionTarget, completionSelector, and contextInfo parameters is optional and necessary only if you want to be notified asynchronously when the function finishes writing the image to the user’s Saved Photos album. If you do not want to be notified, pass nil for these parameters.
0 コメント:
コメントを投稿