我将 info.plist 设置如下:
- 初始界面方向:横向(左主页按钮)
- 支持的界面方向:横向(左主页按钮)和横向(右主页按钮)
当我启动我的应用程序时,方向设备具有横向模式,但我的视图不会旋转到这个方向。
我使用下面的方法进行旋转方向,但在横向模式下查看不是初始的(在这种情况下旋转我的设备后,我需要结果 - 在横向模式下查看旋转)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}