更改 UISearchBar/键盘搜索按钮标题 [英] Change UISearchBar/Keyboard Search Button Title

查看:35
本文介绍了更改 UISearchBar/键盘搜索按钮标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 UISearchBar 控件中,是否可以将键盘的 Search 键标题更改为 Done?

In the UISearchBar control, is the a way to change the Search key title for the keyboard to Done?

推荐答案

对于名为 tablesearchbar 的搜索栏:

For a searchbar named tablesearchbar:

// Set the return key and keyboard appearance of the search bar
        for (UIView *searchBarSubview in [tableSearchBar subviews]) {

            if ([searchBarSubview conformsToProtocol:@protocol(UITextInputTraits)]) {

                @try {

                    [(UITextField *)searchBarSubview setReturnKeyType:UIReturnKeyDone];
                    [(UITextField *)searchBarSubview setKeyboardAppearance:UIKeyboardAppearanceAlert];
                }
                @catch (NSException * e) {

                    // ignore exception
                }
            }
        }

这篇关于更改 UISearchBar/键盘搜索按钮标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆