如何将UISearchBar上"Cancel"按钮改为”取消“?

Posted 我不是冰红茶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将UISearchBar上"Cancel"按钮改为”取消“?相关的知识,希望对你有一定的参考价值。

别说话,直接上代码

for (id obj in [searchBar subviews]) {
        if ([obj isKindOfClass:[UIView class]]) {
            for (id obj2 in [obj subviews]) {
                if ([obj2 isKindOfClass:[UIButton class]]) {
                    UIButton *btn = (UIButton *)obj2;
                    [btn setTitle:@"取消" forState:UIControlStateNormal];
                }
            }
        }
   } 

以上是关于如何将UISearchBar上"Cancel"按钮改为”取消“?的主要内容,如果未能解决你的问题,请参考以下文章

在文本字段中显示 UISearchBar "X" 与相邻的取消按钮

带有 UISearchBar 和 UITableView 的 UISearchDisplayController - 如何避免“实时结果”?

“Swift Core Data”如何向 UISearchBar 添加 Scope Bars? [关闭]

UISearchBar 自定义

Gestionale per utente php con form di登录注销上载e canc文件

在 UISearchBar 中按“x”时关闭键盘