このコードを使用して、iOS 5.0 アプリのアプリでスクリーンショットを撮ります。
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
これは、App Store に提出されるアプリケーションのスクリーンショットを撮る方法として認められますか? 他のアプリがスクリーンショットの撮影を拒否されたと聞いたので、これが適切であることを確認したかったのです。