标签:
第一步修改约束的值 , 第二步调用 [self.view layoutIfNeeded];
- (IBAction)buttonClick:(UIButton *)sender
{
self.topViewC.constant += 70;
// [self.topView setNeedsUpdateConstraints];
// 调用此方法告诉self.view检测是否需要更新约束,若需要则更新,下面添加动画效果才起作用
// [self.topView updateConstraintsIfNeeded];
[UIView animateWithDuration:2.0 animations:^{
[self.view layoutIfNeeded];
}];
}
标签:
原文地址:http://www.cnblogs.com/fantasy3588/p/5248339.html