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.
流程图
你好,
我是ios开发的新手。是否有任何可能的方法可以使用“Unwind segue”进入特定的视图控制器而不是进入根控制器。我附上了代表控制器流程的图表。假设“视图控制器 3”包含一个 Button。如果我单击按钮,我想查看“表格视图控制器”。当我尝试使用“Unwind Segue”时,它会转到“View Controller 1”。因为“View Controller 1”是应用程序的根容器。我们可以使用“Unwind segue”转到“Table view controller”吗?
您可以使用
[self.navigationController popToViewController:[[self.navigationController viewControllers] objectAtIndex:yourindex] animated:YES];
转到堆栈上所需的视图控制器