可能重复:
iOS 6 中的自动旋转有奇怪的行为
我有 IOS 6 的问题,显示显示为纵向而不是横向。我同时使用真实设备和模拟器设备,如果我在 5.1 模拟器上构建游戏,如果我使用模拟器版本 6 或带有版本 6 的真实设备,视图将正确呈现,视图将获得纵向视图。这是我的代码。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if( interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight )
return YES;
知道如何解决此类问题吗?
谢谢急诊室