键盘不解雇

时间:2009-09-21 09:59:41

标签: iphone iphone-softkeyboard

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

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 

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

1 个答案:

答案 0 :(得分:1)

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

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
     [textField resignFirstResponder];
     return YES;
}