我已经为这些文本字段实现了代表UITextField
和方法。以下是方法:
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[textField resignFirstResponder];
}
- (BOOL)textFieldShouldReturn:(UITextField *)aTextField
{
[aTextField resignFirstResponder];
return YES;
}
我的问题是,当我想在UITextField
其委托中输入文本时,不允许我将文本输入到文本字段中。请告诉我如何将数据输入文本字段