The problem is that some inner search bar views forcing the resize to ignore the animation.
This worked for me -
[UIView animateWithDuration:0.2 animations:^ {
[searchBar setFrame:searchBarFrame];
[searchBar setNeedsLayout];
}];
Where searchBarFrame
- is a frame you need to set (I save it before search bar resized first time)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…