如何将 UILabel 放在 UIToolbar 之上?
我有一个 UILabel,当用户在文本字段中键入内容时显示字符数。目前它位于半透明的 UIToolbar 后面。我希望 UILabel 位于 UIToolbar 之上。我怎样才能做到这一点?
I have a UILabel that shows a character count as the user types into a textfield. Currently it is sitting behind a translucent UIToolbar. I would like the UILabel to be ontop of the UIToolbar. How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会将其作为
UIBarButtomItem
添加到UIToolbar
的项目中。使用[[UIBarButtonItem alloc] initWithCustomView:myLabel]
实例化它。I would add it to the
UIToolbar
's items as aUIBarButtomItem
. Instantiate it with[[UIBarButtonItem alloc] initWithCustomView:myLabel]
.