UISearchBar 中的清除按钮

发布于 2024-11-19 15:41:44 字数 80 浏览 2 评论 0原文

您好,我可以删除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

树深时见影 2024-11-26 15:41:44

您无法直接访问UISearchBarclearButton。您必须循环遍历 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.

反差帅 2024-11-26 15:41:44

您需要获取

UITextField *textField = [searchBar valueForKey:@"_searchField"];
textField.clearButtonMode = UITextFieldViewModeNever;

在 - searchBarTextDidBeginEditing 方法中使用的搜索栏的文本字段。

- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
 {

UITextField *textField = [searchBar valueForKey:@"_searchField"];
textField.clearButtonMode = UITextFieldViewModeNever;


 }

You need to get the textField of the Search Bar

UITextField *textField = [searchBar valueForKey:@"_searchField"];
textField.clearButtonMode = UITextFieldViewModeNever;

use in - searchBarTextDidBeginEditing method.

- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
 {

UITextField *textField = [searchBar valueForKey:@"_searchField"];
textField.clearButtonMode = UITextFieldViewModeNever;


 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文