我在AppStore上有一个应用程序,它在iPhone上有纵向模式,在iPad上可以在横向上使用。然而,我得到的报告显示它在iPad 1上显示肖像因此破坏了整体视图。
为什么iPad 1专门显示人像模式? iPad的版本是5.1.1
答案 0 :(得分:6)
在ios 6中,支持界面方向的方法已经改变。为了支持两个版本中的接口方向,我们需要检查操作系统版本并相应地编写代码。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
支持新版本
- (NSUInteger)supportedInterfaceOrientations {
}
- (BOOL)shouldAutorotate {
}
在我的View Controller中,我有以下内容:
- (NSUInteger)supportedInterfaceOrientations {
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
}
- (BOOL)shouldAutorotate {
}
答案 1 :(得分:0)
转到并确保所有视图控制器返回它们支持的正确方向模式。我在iOS 5中看到过这样的行为,如果我没记错的话,那就是原因。
答案 2 :(得分:0)
我有一个非常相似的,我通过更改AppDelegate.m->中的以下代码解决了这个问题。的applicationDidFinishLaunching:
[self.window addSubview:self.viewController];
到
[self.window setRootViewController:self.viewController];