IOS 7
方向景观如果出现在风景中则无法正常工作
这是在横向和potrait中的演示。所以它在肖像上正常工作,但在景观中它不能正常工作。这是我的演示项目
答案 0 :(得分:0)
1.要以横向模式启动应用程序以使状态栏立即处于适当位置,请编辑Info.plist文件以添加具有适当值(UIInterfaceOrientationLandscapeRight or UIInterfaceOrientationLandscapeLeft)
的UIInterfaceOrientation键,如图2所示。
2:以横向模式启动应用程序
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
3.替换nextView函数的代码 - [self.view insertSubview:self.secondView.view aboveSubview:self.view];
与 - [self.view addSubView:self.secondView.view ];