ipad如何知道键盘已被隐藏

时间:2011-10-27 06:05:29

标签: ios ipad keyboard hide

我正在构建一个ipad应用程序,

它有一些文本字段,当点击时,移动到键盘上方,

如果点击“计算”按钮,键盘和视图,则按下

但如果用户从ipad [键盘的右下角键]

点击隐藏键盘

我的观点仍然很高,

那么,我怎么能以编程方式知道“隐藏键盘”已被点击?

非常感谢!

1 个答案:

答案 0 :(得分:9)

您应该使用通知中心跟踪键盘,

NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self selector:@selector(didShow) name:UIKeyboardDidShowNotification object:nil];
[center addObserver:self selector:@selector(didHide) name:UIKeyboardWillHideNotification object:nil];

//Resize your views in the below methods
- (void)didShow
{

}

- (void)didHide
{

}