将UIView转为图片,并保存至相册

来源:互联网 发布:美国ip衍生品数据 编辑:程序博客网 时间:2024/04/29 08:26
    UIGraphicsBeginImageContext(self.view.bounds.size);        [View1.layer renderInContext:UIGraphicsGetCurrentContext()];    [View2.layer renderInContext:UIGraphicsGetCurrentContext()];    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();        UIGraphicsEndImageContext();        UIImageWriteToSavedPhotosAlbum(image,self, nil, nil);

0 0