我们使用以下代码在横向模式下对齐屏幕之一
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
它在 5.1 模拟器(横向)中按预期显示,但
在 iPad 中以纵向模式显示。请建议