我有 UINavigationController 和 UIViewController,然后我推送另一个视图控制器,但我不需要链接到 NavigationBar 上的前一个。对这种事情做正确的方法是什么?
谢谢!
我有 UINavigationController 和 UIViewController,然后我推送另一个视图控制器,但我不需要链接到 NavigationBar 上的前一个。对这种事情做正确的方法是什么?
谢谢!
使用 UINavigationBar 的属性
@property(nonatomic,assign) BOOL hidesBackButton; // If YES, this navigation item will hide the back button when it's on top of the stack.
这取决于您在显示控制器后要对控制器执行的操作。如果它将以其他方式被解雇,您可以使其成为模态而不是推动它。如果它将成为导航堆栈中的新第一项,您可以替换现有的控制器。