Is there any event or method to detect that I pressed the ipad's default hide keyboard button?
Asked
Active
Viewed 1,789 times
1 Answers
1
You can use these notifications:
UIKeyboardWillHideNotification
- Posted immediately prior to the dismissal of the keyboard.
UIKeyboardDidHideNotification
- Posted immediately after the dismissal of the keyboard.
Source: Managing the Keyboard

Adam
- 26,549
- 8
- 62
- 79
-
Yes @Adam you are correct. I guess the only way to do it is using Notifications. Thanks. – southpark Jun 11 '12 at 04:50