将UIView保存为图片

你是不是也想过将当前的UIView作为图片保存到iPhone的Photo Albums呢。

下面给出实现该功能的代码。非常简单,5行就搞定了。

 

    UIGraphicsBeginImageContext(currentView.bounds.size);
    [currentView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);

最后别忘了添加QuartzCore.framework和导入头文件#import

你可能感兴趣的:(UIView)