如何将当前视图作为图像保存到我的应用程序的相机胶卷?有可能吗?
感谢。
答案 0 :(得分:44)
找到解决方案。可以帮助别人。要将当前视图另存为图像,请执行以下操作
UIGraphicsBeginImageContext(pictureView.bounds.size);
[pictureView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);