Why does my UISearchDisplayController show "No Results" even if the shouldReloadTableForSearchString method returns NO? Shouldn't he do nothing and stay black? How can I prevent this?
#import "RootViewController.h" @implementation RootViewController #pragma mark Table view methods - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; }
Jeena source share