在Secure Text Entry
中使用UITextField
时,如果我输入了文字,则会覆盖该文字,转到另一个文字字段并返回并开始书写而不退回。
现在,我使用以下内容来跟踪输入的文本:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSString *text = [textField.text stringByReplacingCharactersInRange:range withString:string];
}
但是在上面的情况中,事件没有跟踪文本字段已被清除,因此我不能总是依赖字符串text
有什么好的提示吗?