Hi,
I need to check condition is keyboard appearing, in my iphone app.
like:
if(keyboardIsPresentOnWindow) {
//Do action 1
}
else if (keyboardIsNotPresentOnWindow) {
//Do action 2
}
So please help how to check this condition?
Thanks.
|
|
|||||||
|
|
|
drawnonward's code is very close, but collides with UIKit's namespace and could be made easier to use.
|
||
|
|
|
|
create a UIKeyboardListener when you know the keyboard is not visible, for example by calling [UIKeyboardListener shared] from applicationDidFinishLaunching.
|
|||
|
|
|
I think you need to use the notifications that are provided about the keyboard:
|
||||
|