在UITableView中的实时search

我已经实现了UISearchBarUITableView中查找元素。 一切似乎都正常工作,现在我正处于需要实时searchtextField中每个按键的部分,并且每按一次button就缩小search范围。

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

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

谢谢。

实际上有一个内置的函数可以帮助实时search。 唷!

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