我想知道如何在屏幕上检测IOS中的键盘。我整天都在努力,但我无法让它发挥作用。
答案 0 :(得分:1)
有特殊的NSNotification
来处理。您可以添加观察者来听取它(不要忘记取消订阅)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShown:) name:UIKeyboardWillShowNotification object:nil];
然后你可以在方法中处理:
- (void)keyboardWillShown:(NSNotification *)notification {
// handle
}