导航控制器在景观与故事板[iPhone]

时间:2012-02-15 18:16:14

标签: iphone ios5 uinavigationcontroller storyboard landscape

我正在我的故事板中使用导航控制器,但是当我将模拟器置于横向时,我的应用程序始终采用纵向格式。为什么? =(

1 个答案:

答案 0 :(得分:1)

更改

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

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

另外,请确保在项目设置中将“支持的设备方向”设置为允许横向显示。