iPhone 在工具栏上设置标题?
我有常规工具栏,上面有四个按钮,现在我想为工具栏设置标题。问题是,与导航栏不同,工具栏没有标题属性。有办法做到这一点吗?
I have regular toolbar, with four buttons on it, and now i would like to set title to toolbar. Problem is, unlike navigation bar, toolbar doesn't have title property. Is there a way to make this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,添加一个 UIBarButtonItem,设置文本并将 UIBarButtonItemStyle 设置为 UIBarButtonItemStylePlain。或者您可以将 UILabel 直接拖放到工具栏
To do so add a UIBarButtonItem, set text and make UIBarButtonItemStyle as UIBarButtonItemStylePlain. Or You can drag and drop a UILabel directly to toolbar
您需要直接从 IB 或代码中添加
UILabel
。由于UIToolBar
用于包含控件,因此它不包含标题等属性。You need to add
UILabel
either directly from IB or in code. SinceUIToolBar
is meant for containing controls it does not contains properties like title.