0

我试图让我的视图控制器旋转,但我无法让它工作。我添加了这两种方法:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return YES; //iOS 5
}

- (BOOL)shouldAutorotate
{
    return YES; //iOS 6
}

第二个(我使用 ios6)确实被调用了,但没有发生旋转。为什么是这样?

感谢!

4

1 回答 1

0

同样在 ios6 上实现:

- (NSUInteger) supportedInterfaceOrientations
{
   return UIInterfaceOrientationMaskAll; 
}

这篇文章对我支持 ios5 和 6 非常有用: iOS5/6 中的自动旋转?

于 2013-03-11T18:38:15.657 回答