/**
 *  将ImageVi的Image保存到相册
 */
 UIImageWriteToSavedPhotosAlbum(self.iconBigImageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

 

/***  返回数据是否保存成功 **/
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

{

  if (error == nil) {
          BCJLog(@"成功");
   }else{
          BCJLog(@"失败");
   }

}

posted on 2016-04-11 19:50  LiRenee  阅读(177)  评论(0)    收藏  举报