iPhone - 带有文本和符号字符的 UIToolbarButton
我如何在 UIToolbarButton 中输入自定义图片字符(如书签字符),后跟一些文本?
How may I puy into a UIToolbarButton a custom picture characters (like the bookmark one) followed by some text ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个
UIView
并在视图上放置一个UIImage
和UITextView
(或UILabel
)。然后将视图添加到工具栏按钮。Create a
UIView
and drop aUIImage
andUITextView
(orUILabel
) on the view. Then add the view to the toolbarbutton.为您的工具栏按钮提供图像和文本(我认为这是您的问题)
我创建一个 tabBarItem 属性并在“setup”方法中分配初始化它。在 awakeFromNib 中,我调用“setup”方法。确保在支持文件夹中包含您使用的图像
我就是这样做的:
To have an image and text for your toolbar button ( I think that's your question)
I create a tabBarItem property and alloc init it in a "setup" method. In awakeFromNib I call the "setup" method. Be sure to have your image that you use in your supporting files folder
This is how I do it: