当前位置:主页 > 移动开发 > iOS代码 >

iOS中使用UISearchBar控件限制输入字数的实现方法

时间:2022-01-04 10:56:57 | 栏目:iOS代码 | 点击:

废话不多说了,直接给大家上关键代码了,具体代码如下所述:

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText // called when text changes (including clear)
{
if (searchBar.text.length > IMPUT_MAX){
searchBar.text = [searchBar.text substringToIndex:15];
}
}

您可能感兴趣的文章:

相关文章