如何在使用iphone模拟器后隐藏键盘?

时间:2010-05-05 11:53:11

标签: iphone objective-c uibutton

如何在使用iphone模拟器后隐藏键盘? 在我的应用程序中,Ist ​​textfield用于名称,另一个用于密码和一个我想要的按钮 每当我点击按钮时隐藏键盘。

3 个答案:

答案 0 :(得分:2)

按钮动作例程中的

写入[yourTextField resignFirstResponder]。它会隐藏你的键盘。

吉姆。

答案 1 :(得分:2)

有两种方法可以做到......

1>实施

- (IBAction) doneButtonOnKeyboardPressed: (id)sender
{

}

Textfield的退出事件结束时的方法

OR

在Textfield中实现此委托方法

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

答案 2 :(得分:0)

好的,如果我们想在鼠标点击UITextView(名称为“myTextView”)之外关闭模拟器的键盘,我们可以使用:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    self.myTextView.resignFirstResponder;
    // or [myTextView resignFirstResponder];
}