如何与“隐藏键盘”按钮进行互动 在iPad数字键盘中。 我需要为此按钮添加验证。 或者我如何关闭此按钮?
答案 0 :(得分:1)
这不是键盘隐藏按钮的委托方法。但我认为您可以通过向您添加以下代码来解决此问题.m文件
1.将以下代码添加到viewWillAppear函数
[[NSNotificationCenter defaultCenter] addObserver:self 选择:@选择(keyboardWillHide :) 名称:UIKeyboardDidHideNotification 对象:无]; 2.添加以下代码以查看WillDisappear函数
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];
3. .h文件中的声明功能
-(void)keyboardWillHide:(NSNotification*)notify;
4.在.m文件中定义函数
- (void)keyboardWillHide:(NSNotification *)notif {
//Add the code for What you wish to do after the key board hide.
}
答案 1 :(得分:0)
使用它来获取用户点击该按钮的时刻
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
[textField resignFirstResponder];
//your code here
return YES;
}