Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 iPad 中,我们有
- (BOOL)textFieldShouldReturn:(UITextField *)textField { [textFieldOne resignFirstResponder]; [textFieldTwo resignFirstResponder]; return YES; }
但我们也可以在箭头键上关闭键盘,这样我们就可以使用箭头键的方法来显示一些东西
这是屏幕截图
在 iPad 上单击“隐藏键盘”按钮时,不会调用任何函数。如果您想在键盘按下时执行任何操作。您可以使用以下功能:
- (void)textFieldDidEndEditing:(UITextField *)textField
或者,您可以使用键盘通知,即UIKeyboardWillHideNotification.
UIKeyboardWillHideNotification