一个视图控制器肖像,其他景观

时间:2012-12-22 02:32:50

标签: iphone ipad rotation xcode4.5 uiinterfaceorientation

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

任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:2)

我认为你想要的是:UIViewController类的shouldAutoRotateToInterfaceOrientation方法。

如果YES支持方向,则此函数返回UIView。如果return YESlandscape orientation,那么iPhone将自动置于该方向。

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

GoodLuck !!!

答案 1 :(得分:0)

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