我有一个纵向的初始视图控制器,我希望下一个视图控制器只能是横向的。用户不能转动 iPhone/iPad 来改变旋转。有人可以帮我吗?
任何帮助表示赞赏。
我有一个纵向的初始视图控制器,我希望下一个视图控制器只能是横向的。用户不能转动 iPhone/iPad 来改变旋转。有人可以帮我吗?
任何帮助表示赞赏。
我想你想要的是:Class的shouldAutoRotateToInterfaceOrientation方法。UIViewController
如果YES
您的UIView
. 如果你return YES
只向landscape orientation
,那么 iPhone 会自动被放在那个方向。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscape);
}
祝你好运 !!!
也许您正在寻找UIViewController shouldAutorotateToInterfaceOrientation
或其他一些与方向相关的成员。