1

我有一个纵向的初始视图控制器,我希望下一个视图控制器只能是横向的。用户不能转动 iPhone/iPad 来改变旋转。有人可以帮我吗?

任何帮助表示赞赏。

4

2 回答 2

2

我想你想要的是:Class的shouldAutoRotateToInterfaceOrientation方法。UIViewController

如果YES您的UIView. 如果你return YES只向landscape orientation,那么 iPhone 会自动被放在那个方向。

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

祝你好运 !!!

于 2012-12-22T07:11:07.083 回答
0

也许您正在寻找UIViewController shouldAutorotateToInterfaceOrientation或其他一些与方向相关的成员。

于 2012-12-22T03:03:48.917 回答