Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个看起来像这样的应用程序;
导航控制器->表格视图控制器->导航控制器2->表格视图控制器2
我面临的问题是我想在 Table View Controller2 上有一个“返回”按钮,它将带我回到第一个导航控制器。除了在 Table View Controller2 的导航栏中放置一个按钮并创建一个返回到第一个导航控制器的模态序列外,我一生都无法弄清楚如何做到这一点。我不认为苹果会喜欢这样。任何人都可以帮忙吗?
试试这个:
NavigationController *nav = [[NavigationController alloc]init]; [self.navigationController pushViewController:nav animated:YES]; [nav release];