0

在我的视图控制器中,我添加了一个文本字段,如下所示。

txt1 = [[UITextField alloc]initWithFrame:CGRectMake(10, 10, 70, 20)];
txt1.delegate = self;
txt1.borderStyle = UITextBorderStyleRoundedRect;
[self.view addSubview:txt1];
[txt1 release];

UITextFieldDelegate.h文件中设置。我写的

-(BOOL)textFieldShouldReturn:(UITextField *)textField 

解雇我的键盘。但它没有触发委托方法。任何帮助!提前致谢。

4

1 回答 1

1

您是否尝试过发送resignFirstResponder消息?

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
     [textField resignFirstResponder];
     return YES;
}
于 2009-09-21T10:08:28.457 回答