我想在键盘被关闭后调用我的登录方法 - 因为我想启动动画并将 UIView alpha 更改为 0.5 直到响应。
- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
if (theTextField == self.passwordText){
//hide the keyboard
[theTextField resignFirstResponder];
[self validateCredentialsRemotely];
}else{
[self.passwordText becomeFirstResponder];
}
return YES;
}
在调用该方法之前键盘不会被关闭,validateCredentialsRemotely
并且在显示键盘时屏幕会冻结。我希望它首先被解雇,然后调用该方法。