我有一个uitextfield,我计算字符数。这个想法是,当计数达到4时,它应该继续到下一个文本字段。问题是,虽然计数器告诉我该字段确实包含四个字符,但该字段仅显示三个字符。当我手动按下返回键时,它可以工作,但我不是用户必须这样做的。这是我的代码。
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSInteger textLength = 0;
textLength = [textField.text length] + [string length] - range.length;
NSLog(@"Length: %ld", (long)textLength);
NSLog(@"tag: %ld", (long)textField.tag);
if (textField.tag == 1 || textField.tag == 2) {
if (textLength == 4) {
NSLog(@"doneeee");
NSLog(@"testfield: %@", textField.text);
}
}
if (textField.tag == 3) {
NSLog(@"we're here");
if (textLength == 6) {
NSLog(@"Zip is done");
[self checkTheTextField:textField];
}
}
return YES;
}
答案 0 :(得分:0)
当文字长度为4时尝试resignFirstResponder
和becomeFirstResponder
答案 1 :(得分:0)
正如评论中所指出的,您只在NSLog
语句中看到3个字符被打印出来的原因是因为在方法返回{之前,更改尚未应用于textField.text
{1}}。为了让应用程序在达到所需长度时自动选择下一个文本字段,您只需在下一个文本字段上调用YES
即可。例如:
becomeFirstResponder
作为旁注,如果字段的长度大于而不是特定字段的所需长度,则可能需要输入一些逻辑来从此方法返回if(textLength == 4)
{
NSLog(@"doneeee");
// Here's how you can output the field's text, assuming you will return YES
NSLog(@"testfield: %@", [textField.text stringByReplacingCharactersInRange:range withString:string];
// Here's how you make the next field active
[nextTextFieldOutlet becomeFirstResponder]; // Or whatever you field is called.
}
return YES;
。例如,如果您只希望邮政编码字段的最大值为6,请检查NO
是否在这种情况下返回fieldLength > 6
。这样,如果有人试图粘贴一个长字符串,它就会拒绝它。
答案 2 :(得分:0)
作为另一种选择,当长度达到4时,您可以直接设置textField.text,将下一个textField设置为第一响应者,然后返回NO。
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSString *text = [textField.text stringByReplacingCharactersInRange:range withString:string];
if (textField.tag == 1 || textField.tag == 2) {
if (text.length == 4) {
textField.text = text;
[yourNewTextField becomeFirstResponder];
return NO;
}
}
// ...
return YES;
}