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

保存图片到系统相册

作者: 呦嚯嚯嚯12138 | 来源:发表于2016-10-03 15:52 被阅读15次

    - (void)saveImageToPhotos:(UIImage*)savedImage

    {

    UIImageWriteToSavedPhotosAlbum(savedImage, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);

    }

    // 指定回调方法

    - (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo

    {

    NSString *msg = nil ;

    if(error != NULL){

    msg = @"保存图片失败" ;

    }else{

    msg = @"保存图片成功" ;

    }

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"保存图片结果提示"

    message:msg

    delegate:self

    cancelButtonTitle:@"确定"

    otherButtonTitles:nil];

    [alert show];

    }

    相关文章

      网友评论

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

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