导航控制器为纵向时,在一个视图中将纵向设置为纵向

时间:2010-12-13 20:31:20

标签: iphone xcode orientation

如果我的应用程序处于横向位置,然后按下按钮加载信息视图,如何将信息视图设置为仅支持纵向位置,因此在加载视图时将方向更改为纵向?

感谢任何帮助。

先谢谢。

2 个答案:

答案 0 :(得分:1)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (UIInterfaceOrientationPortrait == interfaceOrientation )
}

答案 1 :(得分:1)

也许是这样的:

    [application setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];