- 1.在修改约束之后,只要执行下面的代码,就能做动画效果
- 2.layoutIfNeeded遍历的不是superview链,应该是subviews链
- 3.所以要用父类调用layoutIfNeeded
[UIView animatedWithDuration:1.0f animations:^{
[添加了约束的view layoutIfNeeded];
}];
[UIView animatedWithDuration:1.0f animations:^{
[添加了约束的view layoutIfNeeded];
}];
本文标题:layoutIfNeeded
本文链接:https://www.haomeiwen.com/subject/gixdpttx.html
网友评论