I have implemented filterContentForSearchText method in UISearchDisplayDelegate.
I can see that (NSString*)searchText is the text i write in the textfield, but the scope returns me NULL. What parameter do I give for scope?
|
I have implemented filterContentForSearchText method in UISearchDisplayDelegate. I can see that (NSString*)searchText is the text i write in the textfield, but the scope returns me NULL. What parameter do I give for scope? |
||||
|
|
|
Scope is the "area" in which you are searching, if you have implemented it. E.g.
You can then pass the relevant scope to
This was taken from Apple's TableSearch sample code. |
|||
|
|