码迷,mamicode.com
首页 > 移动开发 > 详细

ios save image to album

时间:2014-10-29 16:22:42      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   for   sp   div   on   art   

- (void)savePhotoToAlbum

{

    ZoomScrollView *zoomScrollView = (ZoomScrollView*)[self.scrollView viewWithTag:BEGIN_TAG_FOR_IMAGE+self.currentImagePage];

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        UIImageWriteToSavedPhotosAlbum(zoomScrollView.imageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

    });

}


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

{

    if (error == NULL) {

        dispatch_async(dispatch_get_main_queue(), ^{

//////////////

        });

    }

    else {

        //////////////////////////////////////

    }

}

ios save image to album

标签:style   io   os   ar   for   sp   div   on   art   

原文地址:http://www.cnblogs.com/mengfanrong/p/4059759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!