我有一个肖像的初始视图控制器,我希望下一个视图控制器只是横向。用户无法转动iPhone / iPad来改变旋转。有人可以帮帮我吗?
任何帮助表示赞赏。
答案 0 :(得分:2)
我认为你想要的是:UIViewController
类的shouldAutoRotateToInterfaceOrientation方法。
如果YES
支持方向,则此函数返回UIView
。如果return YES
仅landscape orientation
,那么iPhone将自动置于该方向。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscape);
}
GoodLuck !!!
答案 1 :(得分:0)
也许您正在寻找UIViewController shouldAutorotateToInterfaceOrientation
或其他一些与方向相关的成员。