17
Retinaディスプレイの品質を損なうことなくUIViewをUIImageにキャプチャする方法
私のコードは通常のデバイスでは問題なく動作しますが、Retinaデバイスでぼやけた画像を作成します。 誰かが私の問題の解決策を知っていますか? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }