私はuiviewを持っていて、そのビューを非常にうまく機能している画像に変換したいのですが、iPhoneのホームボタンを押してアプリを再度実行すると、画像がズームインします。ビューを画像に変換するコードは次のとおりです。
- (UIImage *)captureView {
CGRect rect = [myview bounds];
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[myview.layer renderInContext:context];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
checkImage.image = [self captureView];