UIImageView のスクリーンショットを撮りたいのですが、問題は、元のサイズの 2 倍の幅と 2 倍のサイズにしたいことです。いくつかのアドバイス?
これが私の現在のコードです:
UIGraphicsBeginImageContext(myImageView.bounds.size);
[myImageView.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();