I have a table view with a search bar, I want to search when the text is empty.
I want to display all the data, when the search text is empty (when the user doesn't type any search text)
Note - Things work fine, when the search text is entered, the problem is ONLY when the search text is empty
Unfortunately the contents of self.arForSearch
array is not used when the search text is empty.
I even tried replacing the text with "p"
and yet the data is not loaded.
Question How can I display all the data, when the search string is not typed by the user ?
Code is pasted below:
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
if(searchString.length == 0)
{
searchString = @"p";
NSLog(@"string was empty but was replaced by p");
}
[self filterContentForSearchText:searchString];
// Return YES to cause the search result table view to be reloaded.
return YES;
}
- (void)filterContentForSearchText:(NSString*)str{
// for inCaseSensitive search
str = [str uppercaseString];
NSMutableArray *ar=[NSMutableArray array];
for (NSDictionary *d in self.arForTable) {
NSString *strOriginal = [d valueForKey:@"name"];
// for inCaseSensitive search
strOriginal = [strOriginal uppercaseString];
if([strOriginal hasPrefix:str]) {
[ar addObject:d];
}
}
self.arForSearch=[NSArray arrayWithArray:ar];
NSLog(@"self.arForSearch.count = %i", self.arForSearch.count);
}
}
Just check for empty string and add all the elements from the self.arForTable to self.arForSearch.
Hope this helps...
updated.... then you might need to add the line [yourTable reloadData]; at the end which would refresh the table data