UIToolbar 中工具栏项目之间的分隔符
如何在 UIToolbar 中的按钮之间添加分隔符?
示例图像显示在下面的链接中
How to add a separator between buttons in a UIToolbar?
Sample image is shown in the below link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我使用自定义视图按钮完成此操作,背景为 1 像素宽:
I did it with a custom view button, with a 1 pixel wide background:
我可以想到两种方法:
(a)您可以使它们非常薄的工具栏按钮,并禁用用户交互。
(b) 您的另一个选择是实现您自己的工具栏。我会先尝试(a);)
I can think of two ways :
(a) You could make them very thin toolbar buttons with user interaction disabled.
(b) Your other choice would be to implement your own toolbar. I'd try (a) first ;)
您还可以制作一个工具栏按钮并设置 Title = |
You can also make a toolbar button and set the Title = |
如果你想要一个干净、简单的布局,我会更喜欢一个非常薄的图像,里面有这个分隔符。然后,您可以在普通按钮、分隔符图像按钮(禁用用户交互)和下一个按钮之间添加固定距离。
If yo want a clean, simple layout I would prefer a very thin image with this separator in it. Then you can add fix distances between your normal button, the separator image button (user interaction disabled) and the next button.