如何强制我的应用程序以横向模式启动UISplitViewController?
答案 0 :(得分:0)
您可以在Info.plist文件中使用不同的基于设备的设置。
我找到了example,其中谈到了应用程序以横向模式启动(取决于设备),如下所示:
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationPortrait</string>
<key>UIInterfaceOrientation~ipad</key>
<string>UIInterfaceOrientationLandscapeLeft</string>
第一个标签指向iPhone,而iPad指向iPad。不确定这个链接是否会对你有所帮助,但是这(我的意思是Info.plist方式)绝对是你的选择。
希望它有所帮助。
侨
乔瓦尼
答案 1 :(得分:0)
您始终可以使用此方法。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
答案 2 :(得分:0)