美文网首页
storyboard拖线 改变NSLayoutConstrain

storyboard拖线 改变NSLayoutConstrain

作者: 段公子齐策二 | 来源:发表于2020-04-27 17:46 被阅读0次

    以前用storyboard时候 把约束拖出来属性 改变约束时候 总是实现不了动画效果 用frame布局时候用UIView的动画却没问题 经过查询资料 发现需要用UIView的动画去执行layoutIfNeed 以键盘举例  代码如下

    self.viewBottomLayout.constant = frame.size.height;

        //用layoutIfNeeded方法可以实现动画

        [UIView animateWithDuration:keyboardDuration animations:^{

               [self.view layoutIfNeeded];

        }];

    相关文章

      网友评论

          本文标题:storyboard拖线 改变NSLayoutConstrain

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