storyboard拖线 改变NSLayoutConstraint.constant 实现动画效果

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

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

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

    [UIView animateWithDuration:keyboardDuration animations:^{

           [self.view layoutIfNeeded];

    }];

你可能感兴趣的:(storyboard拖线 改变NSLayoutConstraint.constant 实现动画效果)