美文网首页
iOS Masonry动画

iOS Masonry动画

作者: OrrHsiao | 来源:发表于2021-07-15 15:30 被阅读0次
        [self.animationView.superView setNeedsLayout];
        [self.animationView.superView layoutIfNeed];
        [UIView animateWithDuration:0.25 animations:^{
            [self.animationView mas_updateConstraints:^(MASConstraintMaker *make) {
                make.height.offset(500);
            }];
            [self.animationView.superView layoutIfNeeded];
        }];
    

    做动画时,如果动画是从(0,0)点移动出来的,这表明动画视图的父视图的layoutSubViews里的布局还没有被渲染到屏幕上,需要手动调用父视图的layoutIfNeed

    相关文章

      网友评论

          本文标题:iOS Masonry动画

          本文链接:https://www.haomeiwen.com/subject/ahtmpltx.html