美文网首页
保存图片到相册

保存图片到相册

作者: zhouios | 来源:发表于2016-09-20 15:57 被阅读0次
    //保存图片到相册
    UIImageWriteToSavedPhotosAlbum(self.scanImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    
    - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error
      contextInfo:(void *)contextInfo
    {
        if (error != NULL) {
            //Show error message...
        }else{
            // Show message image successfully saved
        }
    }
    
    

    相关文章

      网友评论

          本文标题:保存图片到相册

          本文链接:https://www.haomeiwen.com/subject/yejoettx.html