Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 0 down vote accepted

Scope is the "area" in which you are searching, if you have implemented it. E.g.

Search with scope bar

You can then pass the relevant scope to filterContentForSearchText:scope: as follows:

[self filterContentForSearchText:searchString 
                           scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];

This was taken from Apple's TableSearch sample code.

share|improve this answer
So if I don't want scope I can just set it nil. Ok, thanks. – pbibergal Nov 22 '12 at 9:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.