IOS Masonry 更新约束添加动画

[self setNeedsUpdateConstraints];
[UIView animateWithDuration:time animations:^{
         [animationView mas_remakeConstraints:^(MASConstraintMaker *make) {
              make.width.height.equalTo(@(120));
              make.trailing.mas_equalTo(self).offset(-16);
              make.bottom.mas_equalTo(self).offset(-18);
         }];
            [self layoutIfNeeded];
  }];

你可能感兴趣的:(ios)