陈斌彬的技术博客

Stay foolish,stay hungry

iPhone UITextField 属性

img

setAutocorrectionType说明

很久之前,偶碰到过一个问题 ,是SearchBar输入内容时(英文),后面总会拖一个尾巴,

如上图附件,,尾巴倒也无所谓,主要是,假如:我输个ab他就出现个aa,点的太快后,就会进入到aa。。。怪郁闷的,

主要那时候刚学,查资料都查了很久,才被我找到这个method(setAutocorrectionType:)它默认就是yes,可以禁掉(即设为NO)。

不仅SearchBar、TextField、UITextView,都可用到此Method.

[SearchBar setAutocorrectionType:UITextAutocorrectionTypeNo];

[TextField setAutocorrectionType:UITextAutocorrectionTypeNo];

[UITextView setAutocorrectionType:UITextAutocorrectionTypeNo];

img