我正在使用 Storyboard 开发 iOS5 iPhone 项目。我正在使用基于 UINavigationController 的应用程序并推送一些 UIViewControllers。我想知道将超过 1 个后级跳回到以前的 UIViewController 的最佳方法是什么。这里有更详细的解释:
(All is managed with a UINavigationController)
RootController is ViewController1
I push ViewController2
From ViewController2, I push ViewController3
I want to come back to UIViewController1 from a UIButton in UIViewController 3
对最佳方法有什么建议吗?
非常感谢
解决了!使用委托模式设计并切换到 UIViewController1。