美文网首页
layout布局动画不生效问题

layout布局动画不生效问题

作者: iOSCoder_XH | 来源:发表于2018-05-21 16:11 被阅读4次

    动画不生效调用方式如下:

        
        [UIView animateWithDuration:1 animations:^{
            self.constraint.constant = height;
            [self.view layoutIfNeeded];
        }completion:^(BOOL finished) {
            
        }];
    

    修改方式如下:

    [UIView animateWithDuration:1 animations:^{
            self.constraint.constant = -height;
            [self.view layoutIfNeeded];
        }completion:^(BOOL finished) {
            
        }];
    

    相关文章

      网友评论

          本文标题:layout布局动画不生效问题

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