UISearchBar 与文本背景
有人知道是否可以更改 UISearchBar 的背景吗?我的意思是在内部(参见附图),我认为该组件是一个 UITextField。
谢谢!
Do somebody know if it's possible change the UISearchBar's background? I mean to the inside (see image attached), i think that component is a UITextField.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我做到了!我必须对 UISearchBar 进行子类化并使用以下内容覆盖layoutSubviews:
该图像是完整的背景图像!
I did it! I had to subclassing UISearchBar and override the layoutSubviews with:
The image is a complete background image!
乔纳森·纳金(Jonathan Naguin)的答案也很好,但维护代码质量的单行答案是
Jonathan Naguin answer is also good but the single line answer for maintain code quality is
我认为没有 API 可以让你改变背景颜色。该组件是 UITextField 的私有子类。即使我们可以通过 hack 来达到效果,但任何人依赖它都是不合适的。
I don't think there is an API that allows you to alter the background color. That component is a private subclass of a UITextField. It wouldn't be appropriate for anybody to rely on it even if we can achieve the effect using a hack.