我使用此功能从uiview创建图像:
UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, 0.0f);
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
UIImage * snapshotImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return snapshotImage;
代码UIImage * snapshotImage = UIGraphicsGetImageFromCurrentImageContext();
让我的屏幕出现故障:
答案 0 :(得分:0)
经过大量的反复试验,我找到了这个课程:
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
当afterScreenUpdates:
设置为YES
时,我会遇到这个故障。一旦我将其设置为NO
,问题就会消失。