2014-10-31 turn off uisearchbar animation code snippet ios You can cancel animation by subclassing UISearchDisplayController and adding this: 123456789101112- (void)setActive:(BOOL)visible animated:(BOOL)animated{ if(self.active == visible) return; [self.searchContentsController.navigationController setNavigationBarHidden:YES animated:NO]; [super setActive:visible animated:animated]; [self.searchContentsController.navigationController setNavigationBarHidden:NO animated:NO]; if (visible) { [self.searchBar becomeFirstResponder]; } else { [self.searchBar resignFirstResponder]; }} < a1528-4g customize tabbar icon and text color >