iOS UITextField取消第一响应时文字会跳动

使用Masonry布局。然后使用mas_update更新约束做了一个动画。更新约束部分代码如下(在监听键盘弹出的方法里)

[self.myView mas_updateConstraints:^(MASConstraintMaker*make) {

        make.width.height.mas_equalTo(10);//size变小

}];

[UIView animateWithDuration:.3 animations:^{

        [self.view layoutIfNeeded];

}];

修正 bug:

把最后一句[self.view layoutIfNeeded];改为[self.view layoutSubviews];,取消第一响应的时候文字就不会跳动了。

[UIView animateWithDuration:.3 animations:^{

        [self.view layoutSubviews];

}];

你可能感兴趣的:(iOS UITextField取消第一响应时文字会跳动)