iOS: hide UITextField Cursor

Simply subclass UITextField and override caretRectForPosition

(继承 UITextField 并且重写 [UITextField caretRectForPosition] 方法)

- (CGRect)caretRectForPosition:(UITextPosition *)position
{
    return CGRectZero;
}

补充于  2014年06月18日15:29:23

设置 UITextField 的 TintColor 可以改变光变的颜色。可以尝试让光标颜色为 clearColor 或者与背景色一致。

posted @ 2014-04-11 15:10  有妄想症的猫zz  阅读(438)  评论(0编辑  收藏  举报