我有一个具有用户名和密码字段的应用。我想在允许用户停止编辑字段之前验证输入。为此,我使用textFieldShouldEndEditing委托方法。如果输入未验证,则显示UIAlertView。
此方法与宣传的方式相同 - 如果输入未验证,则用户无法离开该字段。
要让键盘上的完成按钮关闭键盘,我在文本字段上调用resignFirstResponder。
我遇到的问题是警报被调用两次。如何防止警报显示两次?
编辑以澄清
发生的是警报出现,然后出现另一个警报。然后,我必须关闭两个窗口来修复输入。
这是textFieldShouldEndEditing方法
-(BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
NSLog(@"function called %@",textField);
if([textField.text length] == 0)
{
return YES;
}
if(textField == userName)
{
if([self userNameValidated:textField.text])
{
NSLog(@"name validated");
NSString *tempDonerName = [[NSString alloc] initWithString:(@"%@",userName.text)];
//[[NSUserDefaults standardUserDefaults] setObject:tempDonerName forKey:@"name"];
[tempDonerName release];
return YES;
} else {
NSLog(@"name did not validate");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Invalid Username",@"Invalid Username title")
message:NSLocalizedString(@"Please make sure there are no apostrophes,spaces in the username, and that the username is less than 12 characters",@"Invalid username message")
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK",@"OK Text")
otherButtonTitles:nil];
[alert show];
[alert release];
return NO;
}
} else if (textField == userPin) {
if([self userPinValidated:textField.text])
{
NSLog(@"pin validated");
//NSString *tempDonerPin = [[NSString alloc] initWithString:(@"%@",userPin.text)];
//[[NSUserDefaults standardUserDefaults] setObject:tempDonerPin forKey:@"pin"];
//[tempDonerPin release];
return YES;
} else {
NSLog(@"pin did not validate");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Invalid Password",@"Invalid Pin title")
message:NSLocalizedString(@"Please make sure there are no apostrophes in the password",@"Invalid password message")
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK",@"OK Text")
otherButtonTitles:nil];
[alert show];
[alert release];
return NO;
}
}else {
NSLog(@"code validate - shouldn't get called");
return YES;
}
}
答案 0 :(得分:0)
不考虑双重警报:resignFirstResponder将调用textFieldShouldEndEditing,没有办法解决这个问题。因此,您需要传递一个标记,表示使用未经验证的输入退出该字段很酷,或者以其他方式清除内容;或者做出用户决定并启用该字段上的清除按钮。