UINavigationBar 系统类型按钮被禁用

发布于 2024-12-29 18:08:24 字数 716 浏览 1 评论 0原文

我使用 UINavigationController 作为我的视图控制器。在 init() 或 viewDidLoad() 中,我设置:

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] 
   initWithBarButtonSystemItem:UIBarButtonSystemItemEdit 
   target:self action:@selector(selector)];

在显示或推送视图时,禁用右栏按钮(如果有,则禁用左栏按钮)。但如果我用自定义按钮替换它就可以正常工作。

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] 
   initWithImage:image title:nil 
   target:self action:@selector(selector)];

我认为这是我在这里提出其他问题的根本原因:
MFMailComposeViewController 导航栏按钮被禁用

有人有想法吗? 提前致谢!

I use UINavigationController for my view controller. In init() or viewDidLoad(), i set :

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] 
   initWithBarButtonSystemItem:UIBarButtonSystemItemEdit 
   target:self action:@selector(selector)];

While present or push view, right bar button (and left if have) is disabled. But if I replace by custom button then it's worked normally.

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] 
   initWithImage:image title:nil 
   target:self action:@selector(selector)];

I think this is root cause of my other question here :
MFMailComposeViewController navigation bar buttons are disabled

Does anyone has ideas?
Thanks in advance!

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

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

发布评论

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

评论(1

依 靠 2025-01-05 18:08:24

启用编辑按钮项的正确方法是:

self.navigationItem.rightBarButtonItem = self.editButtonItem;

其他 UIBarButtonItemSystemItem 也会出现这种情况吗?

The proper way to enable the edit button item is:

self.navigationItem.rightBarButtonItem = self.editButtonItem;

Does this also occur with other UIBarButtonItemSystemItems ?

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