The problem is that some inner lines in the search bar cause the resize to ignore the animation.
It worked for me -
[UIView animateWithDuration:0.2 animations:^ { [searchBar setFrame:searchBarFrame]; [searchBar setNeedsLayout]; }];
Where searchBarFrame is the frame to set (I save it before the search bar changes for the first time)
source share