如何在iOS项目中对工具栏项进行分组?
在许多 iOS 项目中,您可以看到像这样分组的工具栏项目
如您所见,箭头已分组。知道如何通过代码实现这一点吗?
in many iOS projects you can see toolbar items that are grouped like this
As you can see the arrows are grouped. Any idea how to achieve this by code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上你可以在 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.