1

(使用故事板)

我试图让我的 ViewController 子类之一支持的不仅仅是纵向视图。

我已经加进去了

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationPortrait));
}

但它似乎没有做任何事情。我的 plist 支持除倒置之外的所有方向,并添加了 shouldautorotate 以仅允许在我想要的视图控制器中使用纵向。

4

1 回答 1

0

您在 ios6 中寻找的方法是- (NSUInteger)supportedInterfaceOrientations

这基本上取代了 shouldAutorotate。与 shouldAutorotate 结合使用。

于 2013-02-07T22:53:32.523 回答