1. 程式人生 > >Masonry 設定完約束之後 如何以動畫的方式完成約束的設定

Masonry 設定完約束之後 如何以動畫的方式完成約束的設定

第一步:用Masonry設定指定view的 約束

第二步:

- (void)doConstraintAnimation {
    [self setNeedsUpdateConstraints];
    [self updateConstraintsIfNeeded];

    [UIView animateWithDuration:.3 animations:^{
        [self layoutIfNeeded];
    }];
}