I am seeing a weird situation. I have put a search bar in the navigation bar and have linked a UISearchDisplayController with the search bar. Now, the search display control
In case anyone suffer from this issue.. Here comes my solution.
-(void) viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; // check if searchDisplayController still active.. if ([searchDisplayController isActive]) { [searchDisplayController setActive:NO]; } }