我有这个:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
在我的应用程序视图控制器中,在 iOS 5 中它按预期工作,但是当我更新到 iOS 6 时,方向定义似乎不起作用,它在定向时也显示横向。任何其他设置的方法定义是否有任何变化?