标签:
要想实时输出TextField中内容,要找到textField内容发现改变就会调用的函数,即
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string { return YES; }
输出实时的内容需要我们组合下,代码如下:
[textField.text stringByReplacingCharactersInRange:range withString:string];
标签:
原文地址:http://www.cnblogs.com/shpyoucan/p/5497835.html