Hello, I've been trying to show the scope bar through the following code and delegate method without success. The strange thing is that if I change the property from showScopeBar to showsSearchResultsButton,.. it works. (the button gets hidden).
I only have the UISearchBarDelegate and I'm using core data.
Thanks
Code:
- (void)searchBarResultsListButtonClicked:(UISearchBar *)searchBar {
if (searchBar) {
srchbar.showsScopeBar = YES;
}
}
I only have the UISearchBarDelegate and I'm using core data.
Thanks