如何在iOS项目中对工具栏项进行分组?

发布于 2024-12-27 09:33:44 字数 138 浏览 0 评论 0原文

在许多 iOS 项目中,您可以看到像这样分组的工具栏项目

在此处输入图像描述

如您所见,箭头已分组。知道如何通过代码实现这一点吗?

in many iOS projects you can see toolbar items that are grouped like this

enter image description here

As you can see the arrows are grouped. Any idea how to achieve this by code?

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

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

发布评论

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

评论(1

热风软妹 2025-01-03 09:33:45

实际上你可以在 UIToolbar 中放置任何东西(任何 View)。每个 UIBarButtonItem 都有一个属性“customView”。只需将 customView 设置为您想要的任何视图即可。在本例中,它是一个 UISegmentedControl。您还可以简单地将 UISegmentedControl 拖到 Interface Builder 中的 UIToolbar 上。

Actually you can put anything (any View) in UIToolbar. Every UIBarButtonItem has a property "customView". Just set the customView any view you want. In this case it's a UISegmentedControl. You can also simply drag out an UISegmentedControl onto your UIToolbar in Interface Builder.

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