ringa_lee
`[UIView animateWithDuration:1.0 animations:^{ _subView1.height = 0.01; } completion:^(BOOL finished) { // 动画完成后跑到下一个view }];`
简单的UIView动画应该就可以实现你要的效果
`[UIView animateWithDuration:1.0 animations:^{
_subView1.height = 0.01;
} completion:^(BOOL finished) {
// 动画完成后跑到下一个view
}];`
简单的UIView动画应该就可以实现你要的效果