我正在开发符合这些要求的环球项目:
我如何为 iOS 8 (Swift)做到这一点?
答案 0 :(得分:31)
根据@ScarletMerlin的建议,在我看来,更改info.plist中的键是我必须满足的要求的最佳解决方案(每种设备的固定方向类型)。
这是我使用的设置的打印屏幕。也许它可以帮助其他有类似疑问的开发人员。
相关源代码如下所示:
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
答案 1 :(得分:0)
我的建议是检查运行应用程序的硬件。为此,请使用以下代码行。
if([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)
然后,一旦检测到硬件,使用shouldAutorotateToInterfaceOrientation阻止方向:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation
{
return UIInterfaceOrientationIsLandscape(orientation);
}
举个例子,你可以这样做
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation
{
if([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)
return UIInterfaceOrientationIsLandscape(orientation); // If iPad
else
return UIInterfaceOrientationIsPortrait(orientation); // Else, it is an iPhone
}