在方法-(void)registerUser
中,我提供了一个带有2个UITextFields和一个Ok Button的模态视图。
填写UITextFields并按下Ok按钮后,我调用委托方法-(void)AEMUserRegistrationVCUserName:(NSString *)un password:(NSString *)pw
,我验证连接到服务器的数据。
当答案到达-(void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response
时如果数据错误,我会尝试使用self.userRegistrationVC.userName becomeFirstResponder]
将焦点设置在UITextfield上,但它不会得到焦点。
我已经检查了[self.userRegistrationVC.userName canBecomeFirstResponder]
并且它返回NO,另一方面是文档默认返回的内容。
我的代码在此作为参考:
注意:
self.userName
和selfPassword
是NSStrings。
self.userRegistrationVC
是一个UIViewController。
self.userRegistrationVC.userName
和self.userRegistrationVC.password
是UITextfields。
-(void)registerUser
{
//Recuperar el nombre de usuario
self.userName = [[NSUserDefaults standardUserDefaults] objectForKey:kNombreUsuario];
if (!self.userName) {
//No hay nombre de usuario, el usuario nunca ha registrado la aplicación.
if (!self.userRegistrationVC) {
//Solicitar datos de registro
self.userRegistrationVC = [[AEMUserRegistrationViewController alloc] initWithNibName:@"AEMUserRegistrationViewController" bundle:nil];
}
self.userRegistrationVC.delegate = self;
[self.viewControllerToPresentModalView presentModalViewController:self.userRegistrationVC animated:YES];
return;
}
//Recuperar la contraseña
NSError *error;
self.password = [SFHFKeychainUtils getPasswordForUsername:self.userName andServiceName:kServiceName error:&error];
if (!self.password) {
//No hay contraseña. La contraseña se ha perdido.
if (!self.userRegistrationVC) {
//Solicitar datos de registro
self.userRegistrationVC = [[AEMUserRegistrationViewController alloc] initWithNibName:@"AEMUserRegistrationViewController" bundle:nil];
}
self.userRegistrationVC.delegate = self;
[self.viewControllerToPresentModalView presentModalViewController:self.userRegistrationVC animated:YES];
return;
}
//Los datos del usuario existen
//Verificar el registro
[self.client get:kConfirmUsuario
queryParams:[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:self.userName, self.password, nil]
forKeys:[NSArray arrayWithObjects:kNombreUsuario, kPassword, nil]]
delegate:self];
}
-(void)AEMUserRegistrationVCUserName:(NSString *)un password:(NSString *)pw
{
//El usuario ha introducido datos de registro
//Realizar el registro
self.userName = un;
self.password = pw;
[self.client get:kCreateUsuario
queryParams:[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:self.userName, self.password, nil]
forKeys:[NSArray arrayWithObjects:kNombreUsuario, kPassword, nil]]
delegate:self];
//No hacer dismiss ahora esperar a verificar el registro
}
-(void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response
{
//Puede responder a createUsuario o a confirmUsuario
//En ambos casos el error impide registrar al usuario y ejecutar el programa
BOOL isRequestCreateUser;
NSRange aRange = [request.resourcePath rangeOfString:kCreateUsuario];
if (aRange.location != NSNotFound) {
//The request was to create a user
isRequestCreateUser = YES;
} else {
//The request was to check a user
isRequestCreateUser = NO;
}
if (response.isConflict) {
//Error
[self.userRegistrationVC.userNameError setHidden:NO];
if ([self.userRegistrationVC.password canResignFirstResponder]) {
NSLog(@"SI"); //This return NO
}
if ([self.userRegistrationVC canBecomeFirstResponder]) {
NSLog(@"SI"); //This returns NO
}
[self.userRegistrationVC.userName becomeFirstResponder];
}
if (response.isServerError) {
//Error
[self.userRegistrationVC.userNameError setHidden:NO];
[self.userRegistrationVC.userName becomeFirstResponder];
}
if (response.isOK) {
//Success
//Retirar la pantalla de registro de usuario
[self.viewControllerToPresentModalView dismissModalViewControllerAnimated:YES];
//Si la peticion fue crear un usuario
if (isRequestCreateUser) {
//Guardar el nombre de usuario en las preferencias del usuario
[[NSUserDefaults standardUserDefaults] setValue:self.userName forKey:kNombreUsuario];
//Guardar la contraseña en KeyChain
[SFHFKeychainUtils storeUsername:self.userName andPassword:self.password forServiceName:kServiceName updateExisting:YES error:nil];
}
[self.delegate AEMUserRegistrationSucess];
}
}
调用顺序为:
阅读论坛时,许多问题都以[UITextField becomeFirstResponder]作为解决方案得到了回答,所以也许我错过了一些重要的东西,而且我无法让它发挥作用。
文档说您可以覆盖canBecomeFirstResponder以返回YES,但是如何覆盖UITextField方法?这是需要做什么的吗?
答案 0 :(得分:0)
尝试使用UITextView。处理iPhone: Stop UIScrollView from auto scrolling when UITextView text is changed的痛苦可以成为你的成果。它完全相反,无论如何...烦人但如果你通过委托回调限制输入可能是可行的