向ios导航栏添加按钮

发布于 2024-12-14 20:48:18 字数 348 浏览 1 评论 0原文

我正在尝试向导航栏添加两个右侧按钮。我尝试使用以下方式添加,但我得到 SIGABRT

  1. self.navigationController.navigationBar.items = navItemsArray;
  2. self.navigationItem.rightBarButtonItems = navItemsArray;

< code>navItemsArray 有两个 UIBarButtonItem 类型的按钮。

谁能帮忙解决这个问题吗?我不知道出了什么问题。

I am trying to add two right buttons to the navigation bar. I tried adding using following ways but I get SIGABRT

  1. self.navigationController.navigationBar.items = navItemsArray;
  2. self.navigationItem.rightBarButtonItems = navItemsArray;

navItemsArray has two buttons of type UIBarButtonItem.

Can anyone help with this? I can't figure out what is wrong.

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

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

发布评论

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

评论(3

久随 2024-12-21 20:48:18
self.navigationItem.rightBarButtonItems = navItemsArray;

仅适用于 iOS 5。

self.navigationItem.rightBarButtonItems = navItemsArray;

works only in iOS 5.

合约呢 2024-12-21 20:48:18

你有按钮的回调吗?您是否通过按住 Option 键单击按钮并将其拖动到某处来“连接”按钮?

您需要将按钮连接到 IBAction。

do you have callbacks for the buttons? Did you "wire up" the buttons by option-clicking them and dragging them to something?

You need to have the buttons connected to an IBAction.

祁梦 2024-12-21 20:48:18

您不能在 UINavigationBar 中直接添加两个 UIBarButtonItem。但使用 UIToolBar 可以达到与导航栏相同的效果。您可以在 UIToolBar 中添加任何控件,例如 switch、segmentedControl 等。

有关代码的更多帮助,请参阅上一篇文章 Link1Link2

You cannot add directly two UIBarButtonItem in UINavigationBar. But use UIToolBar to have same effect as of Navigation Bar. You can add any controls in UIToolBar Such as switch, segmentedControl etc.

For more help on Code please refer the previous post Link1 and Link2

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