将UIView表示形式保存到文件的最简单方法是什么?

我的解决方案是

 UIGraphicsBeginImageContext(someView.frame.size);
 [someView drawRect:someView.frame];
 UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();

 NSString* pathToCreate = @"sample.png";

 NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(image)];
 [imageData writeToFile:pathToCreate atomically:YES];


但是这似乎很棘手,我认为必须有更有效的方法来做到这一点。

最佳答案

您也可以像这样使用图层:

UIGraphicsBeginImageContext(someView.bounds.size);
[someView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

关于iphone - 将UIView的表示形式保存到文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3051630/

10-10 20:37