让 UITextField的光标往右移

2016-08-30  本文已影响85人  Coder大雄

UITextField有个属性叫 leftView,我们首先要设置 leftView的fram

[[UIView alloc] initWithFrame:CGRectMake(50, 0, 50, 0)];

然后还要设置一个枚举的属性 leftViewMode

或者自己写一个类来继承UITextField。重写下面的方法

/*!
 *  @method
 *  @abstract TextField里面的方法
 *  @discussion
 */
- (CGRect)textRectForBounds:(CGRect)bounds {
    bounds.origin.x += 10;
    return bounds;
}

- (CGRect)editingRectForBounds:(CGRect)bounds {
    bounds.origin.x += 10;
    return bounds;
}
上一篇下一篇

猜你喜欢

热点阅读