我试图UITextField
在单独的UILabel
. 有没有办法捕获UITextField
用户输入的每个字符之后的全文?目前我正在使用这种方法,但它不会捕获用户输入的最后一个字符。
我知道UITextView
有“didChange”方法,但我找不到UITextField
.
//does not capture the last character
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
[self updateTextLabelsWithText: textField.text];
return YES;
}
输入每个字符后,如何从 UITextField 中取出文本?
谢谢!