自定义UITextField细节

1.设置光标颜色

self.tintColor= [UIColorwhiteColor];

2.通过富文本设置 placeHolder

NSDictionary* attrDict =@{NSForegroundColorAttributeName: [UIColorwhiteColor]};

NSAttributedString* attributedString = [[NSAttributedStringalloc]initWithString:self.placeholder attributes:attrDict];

[selfsetAttributedPlaceholder: attributedString];

3.自定义的textField,不要自己成为自己的代理,所以监听事件应该用addTarget

[selfaddTarget:selfaction:@selector(textBegin)forControlEvents:UIControlEventEditingDidBegin];

[selfaddTarget:selfaction:@selector(textEnd)forControlEvents:UIControlEventEditingDidEnd];

4.优化placeHolder 设置颜色 的功能,不通过富文本设置,使用runTime封装.

一般控件都是懒加载,如果placeHolder 在IB中没有设置,那么该placeHolder控件并没有去加载,这个时候设置颜色,是无效的;

使用runTime 原理: 先把设置的颜色存起来(动态添加属性),等到设置文字内容的时候(此时控件已被加载),再把颜色传给placeHolder(交换方法).

自定义UITextField细节_第1张图片

5.不使用代理,通知,Addtarget监听聚焦事件,使用系统内部的方法实现

自定义UITextField细节_第2张图片

你可能感兴趣的:(自定义UITextField细节)