我怎样才能拥有一个同时包含图像和文本的 UIBarButtonItem?
当我尝试对 UIBarButtonItem 使用图像时,不显示文本。有没有办法同时显示文字和图像?
When I try to use an image for a UIBarButtonItem, the text isn't shown. Is there a way to show both the text and the image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以使用具有图像和文本的自定义视图来初始化 UIBarButtonItem。这是一个使用 UIButton 的示例。
You can init the UIBarButtonItem with a custom view that has both image and text. Here's a sample that uses a UIButton.
我建议一种使用情节提要来执行此操作的方法:
将 UIButton 和 UILabel 放入视图中。您可以使用约束来调整它们的位置。您也可以将其放在视图之外,例如稍高或稍低(如我的图片所示)。放置 UIButton 的默认图像和突出显示图像。
复制栏按钮项目并调整其他按钮。添加灵活的空间。
创建销售点。
完成:)。当您运行应用程序时,您会看到如下所示的工具栏:
PS 此处< /a> 您可以阅读如何使用 .xib 创建 UIToolbar 子类
I suggest a way how to do this using Storyboard:
Put UIButton and UILabel inside a View. You can use constraints to adjust their positions. Also you can put thier outside of a View, for example, little higher or less (like on my picture). Put Default and Highlighted images for UIButton.
Copy Bar Button Item and adjust another buttons. Add Flexible spaces.
Create outlets.
Done :). When you run app, you get Tool Bar like this:
P.S. Here you can read how to create UIToolbar subclass using .xib
带有目标的 Swift 4.2
Swift 4.2 with target
Kris Markel 的答案是一个好的开始(仅< iOS7),但是如果您使用色调颜色,则它不适用于图像和按钮的突出显示状态。
我创建了一个类别,它将创建一个 UIBarButtonItem (leftBarButtonItem),其外观和行为类似于普通的 iOS7 后退按钮。看一下: https://github.com/Zero3nna/UIBarButtonItem-DefaultBackButton
Kris Markel's answer is a good start (only < iOS7), but if you use tint color, it wount work for the image and the highlighted state of the button.
I've created a category that will create a UIBarButtonItem (leftBarButtonItem) that looks and behaves like a normal iOS7 back button. Have a look at: https://github.com/Zero3nna/UIBarButtonItem-DefaultBackButton
快速更新 UIBarButtonItem 具有包含图像和文本的自定义视图。
Swift Update for UIBarButtonItem with a custom view that has both image and text.