我正在尝试在 iOS 上获取 UIView 屏幕截图。
在我看来,我有两个带有动画的 UIImageView。
我使用它来捕获视图的代码是:
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, NO, 1.0);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
// Read the UIImage object
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(image, self,
@selector(image:didFinishSavingWithError:contextInfo:), nil);
结果是一张有背景的图片,只有一个 UIImageView。两个 ImageView 一直在移动。如果我拍了几张照片,那么 UIImageView 每次都在同一个位置。