我有一个iPhone应用程序,我目前正在转换为通用二进制文件,以便与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];
这只是模拟错误吗?我该如何解决这个问题?
这听起来像是另一个ViewController
回应:
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
先检查一下.