我正在构建一个ipad应用程序,
它有一些文本字段,当点击时,移动到键盘上方,
如果点击“计算”按钮,键盘和视图,则按下
但如果用户从ipad [键盘的右下角键]
点击隐藏键盘我的观点仍然很高,
那么,我怎么能以编程方式知道“隐藏键盘”已被点击?
非常感谢!
答案 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
{
}