Iphone dev:我怎样才能回到我的首页?

时间:2011-12-13 12:36:52

标签: iphone navigation

在我的应用中,用户必须浏览3个不同的视图: 例如:仪表板 - > DamageAcc - >损伤。 在“损坏”视图中,用户可以向服务器发送损坏。发送后我想再次显示仪表板。 我尝试按照从Dashboard导航到DamageAcc以及从DamageAcc导航到Damage的方式执行此操作。

 if(self.dashboardController == nil)
        {

            DashboardController *viewTwo = [[DashboardController alloc] initWithNibName:@"Dashboard" bundle:[NSBundle mainBundle]];


            self.dashboardController = viewTwo;

            [self.navigationController setNavigationBarHidden:NO animated:NO];

            [viewTwo release];
        }

但我的程序说,它不知道DashboardController。 我也导入了它,但这没有帮助。所以我试着做一个@class DashboardController,但这也没有帮助。

有人知道我能做什么吗?

1 个答案:

答案 0 :(得分:2)

Get back to the first screen of my iPhone app after transitioning through five screens

 [self.navigationController popToRootViewControllerAnimated:YES]