UITableView中的实时搜索

时间:2011-06-06 21:03:52

标签: iphone objective-c ios uitableview search

我已经实现了一个 UISearchBar 来查找 UITableView 中的元素。一切似乎工作正常,现在我正处于我需要实际搜索 textField 中按下的每个键的部分,并按下每个按钮缩小搜索范围。

所以在开始编码之前,我想知道是否有任何内置的库函数可以帮助我进行实时搜索? (字符串比较)还是其他什么?

你的回答可以节省我一些时间。

感谢。

1 个答案:

答案 0 :(得分:1)

事实上,实际上有一个内置函数可以帮助实时搜索。 P !,

NSRange match = [userNameString rangeOfString:searchText options:NSCaseInsensitiveSearch];
// match.location will provide the exact location of a match of searchText with a String
// match.length will provide the length of match