このコードを使用して、ビューから画像をレンダリングしています。その後、フォトアルバムに保存しています。画像がぼやけていますか?なんで?解決策はありますか?
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Tnx すべて。