UINavigationBar 中的 rightBarButtonItems 间距
我正在使用 UINavigationBar 的 rightBarButtonItems
属性在导航栏的右侧添加两个按钮。是否可以使这两个按钮之间的间距更宽?
谢谢
i am using the rightBarButtonItems
property of UINavigationBar to add two buttons on the right part of my navigation bar. is it possible to make the spacing between these two buttons wider?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在两个按钮之间添加一个
UIBarButtonSystemItemFlexibleSpace
项。You can add an
UIBarButtonSystemItemFlexibleSpace
item between your two buttons.我无法在我的情况下获得灵活的空间,但这里是我用来定位 rightBarButtonItem 的代码:注意,我在 UIView 周围放置了边框,这样您就可以看到图像的样子在那里。
I was not able to get the flexible space to work in my situation but here is the code I used to be able to position the rightBarButtonItem: Note, I put a border around the UIView so you can see what it looks like with having the image in there.