UISearchDisplayController "shouldReloadTableForSearchString return NO" reloads table
- by Jeena
Why does my UISearchDisplayController show "No results" even if the shouldReloadTableForSearchString method returns NO? Shouldn't it just do nothing and stay black? How can I prevent it from doing so?
#import "RootViewController.h"
#pragma mark Table view methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}…