如何找出键盘在 iOS 中第一次打开的时间?我只想知道您单击单元格(包含 UITextField)并打开键盘的时间。之后,我使用包含上一个和下一个按钮的工具栏浏览 UITextFields。
使用以下代码,在浏览 UITextField 时调用 keyboardWillShow,即使在第一次单击 UITextField 后键盘似乎仍保持打开状态。这种方法对我的目的没有帮助。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardDidShowNotification object:nil];
- (void)keyboardWillShow:(NSNotification *)notification {
}