ios自动布局实现动画

第一步修改约束的值 , 第二步调用  [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];

    }];

}

 

你可能感兴趣的:(ios自动布局实现动画)