嗨,我很容易照顾一个 UITextField。例如,将 UITextField 的委托设置为我的视图控制器并实现这样的方法:
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
// Removes the keyboard from the screen
[self.textFieldProperty1 resignFirstResponder];
return YES;
}
但是如果我有两个 UITextField 怎么办?他们两个的代表仍然是我的视图控制器。那我该如何实现上述方法呢?像这样?
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
// Removes the keyboard from the screen
[self.textFieldProperty1 resignFirstResponder];
[self.textFieldProperty2 resignFirstResponder];
return YES;
}