UIView animateWithDuration 中使用Masonry约束 在系统12.4都可以但是在12.4以后 动画不生效

            [UIView animateWithDuration:3 animations:^{

                [self.pushBgView   mas_remakeConstraints:^(MASConstraintMaker*make) {

                    make.top.mas_equalTo(self.brightnessBgV.mas_bottom).offset(12);

                    make.left.mas_equalTo(self.brightnessBgV.mas_left).offset(59);

                    make.width.mas_equalTo(pointX);

                    make.height.mas_equalTo(screenH*0.30-25);

                }];

                [self.pushBgView.superviewlayoutIfNeeded];

            }completion:nil];

你可能感兴趣的:(UIView animateWithDuration 中使用Masonry约束 在系统12.4都可以但是在12.4以后 动画不生效)