I was recently updating my app and came across this issue. When i start typing in the search bar the search bar disappears and i can only see the table view. I can still kee
-(void)setCorrectSearchBarFrames
{
//INFO: Here we set the frame to avoid overlay
CGRect searchDisplayerFrame = self.searchDisplayController.searchResultsTableView.frame;
searchDisplayerFrame.origin.y = 40.0;
searchDisplayerFrame.size.height -= 40.0;
self.searchDisplayController.searchResultsTableView.frame = searchDisplayerFrame;
}
Thanks Tihi. If I use this block of code the search bar be back !!
Have fun, I hope it could help you.