美文网首页
iOS 保存图片或者视图到本地相册

iOS 保存图片或者视图到本地相册

作者: CCSHCoder | 来源:发表于2016-07-11 14:07 被阅读112次
#pragma mark - 保存视图
   
   UIGraphicsBeginImageContextWithOptions(view.size, NO, 0.0);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    ALAssetsLibrary *assetsLibrary = [[ALAssetsLibrary alloc]init];
    
    [assetsLibrary writeImageToSavedPhotosAlbum:[viewImage CGImage] orientation:(ALAssetOrientation)viewImage.imageOrientation completionBlock:^(NSURL *assetURL, NSError *error) {
        [SHToast showWithText:@"保存成功"];
    }];

相关文章

网友评论

      本文标题:iOS 保存图片或者视图到本地相册

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