UISearchBar 中的清除按钮
您好,我可以删除 UISearchBar 中的清除按钮(X 按钮)吗?
我没有找到任何代表。有一个取消按钮。
谢谢
Hi can I remove clear button (X button)present in UISearchBar?
I didn't find any delegate for that. There is one for cancel button.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法直接访问UISearchBar的clearButton。您必须循环遍历 UISearchBar 的子视图才能找到 UITextField,并将其 clearButtonMode 属性设置为 UITextFieldViewModeNever 。
注意:这不是一个永久的解决方案,因为如果 UISearchBar 的实现因后续 iOS 更新而发生变化,这可能在将来不起作用。
You can not directly access the clearButton of UISearchBar. You have to loop through the subviews of the UISearchBar to find the UITextField, and set its clearButtonMode property to UITextFieldViewModeNever.
Note: This is not a permanent solution because this may not work in future if the implementation of UISearchBar changes by the subsequent iOS updates.
您需要获取
在 - searchBarTextDidBeginEditing 方法中使用的搜索栏的文本字段。
You need to get the textField of the Search Bar
use in - searchBarTextDidBeginEditing method.