如何隐藏 uinavigationcontroller 中的后退按钮

发布于 2024-11-28 17:48:23 字数 181 浏览 0 评论 0原文

我尝试使用删除 uinavigationcontroller 的后退按钮

appdelegate.navigationController.navigationItem.hidesBackButton=YES;

,但在将新的视图控制器推入导航堆栈后它不会删除后退按钮。如何隐藏它?

I tried to remove the backbutton of uinavigationcontroller by using

appdelegate.navigationController.navigationItem.hidesBackButton=YES;

but it does not remove the backbutton after the pushing a new viewcontroller into navigation stack.How to hide this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

仅一夜美梦 2024-12-05 17:48:23

在要隐藏后退按钮的视图控制器的 viewDidLoad 方法中:

self.navigationItem.hidesBackButton = YES;

In the view controller's viewDidLoad method that you want to hide the back button:

self.navigationItem.hidesBackButton = YES;
孤千羽 2024-12-05 17:48:23

你上面那行是错误的。这样做:

 self.navigationController.navigationItem.hidesBackButton = TRUE;

Your above line is wrong. do it with :

 self.navigationController.navigationItem.hidesBackButton = TRUE;
爱格式化 2024-12-05 17:48:23

您可以在 ViewDidLoad 以及 ViewWillAppear 方法中编写此代码:

self.navigationItem.hidesBackButton = YES;

You can write this in your ViewDidLoad as well as in ViewWillAppear method:

self.navigationItem.hidesBackButton = YES;
溺孤伤于心 2024-12-05 17:48:23

现有的答案对我不起作用。我发现对我来说最好的方法是:

self.navigationItem.leftBarButtonItems = [NSArray 数组];

The existing answers didn't work for me. I found that the best way for me was:

self.navigationItem.leftBarButtonItems = [NSArray array];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文