方向景观在景观中不能正常工作

时间:2013-12-02 05:12:50

标签: ios iphone xcode ios7

IOS 7方向景观如果出现在风景中则无法正常工作

这是在横向和potrait中的演示。所以它在肖像上正常工作,但在景观中它不能正常工作。这是我的演示项目

1 个答案:

答案 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 ];