美文网首页
在iOS10下,UITextField进入编辑状态时文字会下移的

在iOS10下,UITextField进入编辑状态时文字会下移的

作者: Mr_XBD | 来源:发表于2016-11-03 15:59 被阅读638次

以下是三种可选的解决方法:

1、把IB中的borderStyle换成UITextBorderStyleLine,在代码中把其改成UITextBorderStyleNone

2、textField.clearButtonMode = UITextFieldViewModeWhileEditing;

3、继承UITextField,覆盖以下方法

- (CGRect)textRectForBounds:(CGRect)bounds {

      return CGRectInset(bounds,2,1);

}

- (CGRect)editingRectForBounds:(CGRect)bounds {

     return CGRectInset(bounds,2,1);

}

参考自stackoverflow

相关文章

网友评论

      本文标题:在iOS10下,UITextField进入编辑状态时文字会下移的

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