我正在使用此代码在 iOS 5.0 应用上的应用中截取屏幕截图:
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
这是为将提交到 App Store 的应用程序截屏的可接受方式吗?我听说其他应用程序因截屏而被拒绝,所以我想确保这是正确的。