页面截图并存手机相册

来源:互联网 发布:vb直用颜色值 编辑:程序博客网 时间:2024/04/20 11:00

   

好久没写了,一直没有写博客的习惯。

 UIGraphicsBeginImageContext(self.view.bounds.size);

    [self.view.layerrenderInContext:UIGraphicsGetCurrentContext()];

    UIImage *image=UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    UIImageWriteToSavedPhotosAlbum(image,self,nil,nil);

0 0