我正在开发一个只会在横向的应用程序。在那个应用程序中,我有一个功能是截取该特定屏幕的屏幕截图。我已经实现了这段代码
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);
使用此代码,我可以在纵向模式下获得我的应用程序的屏幕截图。我想要横向模式。