0

我在这里遇到问题,无法回答为什么我的应用程序会这样。我使用 XCode 4.5+ 和 iOS6 制作了应用程序,并将我的应用程序设置为在横向模式下工作,直到我尝试在以前的版本(如 iOS 5.1 模拟器或以下所有视图都处于纵向模式下)运行它之前它工作正常并且运行良好:(

4

2 回答 2

0

您可以尝试在控制器中定义此方法:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  return ( interfaceOrientation == UIInterfaceOrientationPortrait)ç
}

这与 iOS6 的作用相同shouldAutorotate

于 2013-01-15T15:40:37.100 回答
0

正如 tkanzakic 所建议的那样,- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOr‌​ientation非常感谢低版本解决了我的问题:)

于 2013-01-15T15:41:04.403 回答