UITextField 设置光标起始位置向右偏移——2020-07-17

默认的UITextField的起始位置很靠左,看起来特别的不美观,在页面中需要使用到光标稍微右移一点,下面是方法:

1.新建一个继承自UITextField的子类;
2.子类中重载以下几个方法:

// 未编辑状态下的起始位置
- (CGRect)textRectForBounds:(CGRect)bounds {
    return CGRectInset(bounds, 5, 0);
}
// 编辑状态下的起始位置
- (CGRect)editingRectForBounds:(CGRect)bounds {
    return CGRectInset(bounds, 5, 0);
}

// placeholder起始位置
- (CGRect)placeholderRectForBounds:(CGRect)bounds {
    return CGRectInset(bounds, 5, 0);
}

下边是效果图:


image.png

你可能感兴趣的:(UITextField 设置光标起始位置向右偏移——2020-07-17)