横向模式下的UINavigationController导航堆栈问题

时间:2010-04-22 21:23:13

标签: iphone ipad uinavigationcontroller uitabbarcontroller popviewcontroller

我有一个iPhone应用程序,我目前正在转换为universal binary以使用iPad。我已经成功实现了我在布局方面所需的一切,以便我的应用程序现在支持完整的横向功能(之前我主要使用纵向模式来显示内容)。

但是,我有一个奇怪的问题,它只出现在横向模式下:当我将视图控制器推到堆栈上时,后退按钮上的两次点击返回到上一个视图控制器!第一次点击显示空白视图,但在左侧后退导航按钮上使用相同的名称,第二次点击将控制器恢复到之前的视图。

我没有iPad可供测试,所以我依靠的是模拟器。问题没有显示在iPhone上,如果您旋转回纵向模式则不会显示。

我的应用程序包含一个tabbarcontroller,其中包含为其vc加载的导航控制器:

//application delegate
- (void)applicationDidFinishLaunching:(UIApplication *)application
//....
WebHelpViewController *vc8 = [[WebHelpViewController alloc] init];
UINavigationController *nv8 = [[UINavigationController alloc] initWithRootViewController:vc8];

[self.tabBarController setViewControllers:[NSArray arrayWithObjects:nv1,nv2,nv3,nv4,nv5,nv6,nv7,nv8,nil]];

要实现格局功能,会覆盖UITabBarController以在需要时自动旋转:

//CustomTabBarController.m
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return [[(UINavigationController *)self.selectedViewController topViewController] shouldAutorotateToInterfaceOrientation:interfaceOrientation];
}

......工作正常。我使用此方法导航到新视图

SomeViewController *vc = [[SomeViewController alloc] init];
[self.navigationController pushViewController:vc animated:YES];
[vc release];

这只是模拟错误吗?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:10)

这听起来像另一个ViewController正在回复:

(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

先检查一下。