私はスクリーンショットについて多くの質問と回答を見てきました、私はそれを行う方法を知っています、これは私の問題ではありません、これは私のコードです:
- (void)takeScreenShot
{
//UIGraphicsBeginImageContextWithOptions(CGSizeMake(320, 340), YES, 0.);
UIGraphicsBeginImageContext(CGSizeMake(320, 480));
[self.view.window.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
320x480の正方形のフレームではなく、丸いスクリーンショットを撮るにはどうすればよいですか?