私は横向きにしか存在しないアプリに取り組んでいます。そのアプリには、その特定の画面のスクリーンショットを撮る機能があります。私はこのコードを実装しました
UIGraphicsBeginImageContext(self.view.window.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImageView *imageView = [[UIImageView alloc] init];
imageView.image = UIGraphicsGetImageFromCurrentImageContext();;
imageView.transform = CGAffineTransformMakeRotation(3.0 * M_PI / 2.0);
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(imageView.image, nil, nil, nil);
このコードを使用して、ポートレートモードでアプリのスクリーンショットを取得します。ランドスケープモードで欲しいです。