Hi I have a big problem with iPhone 4.0 OS with this code
if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES) {
}
in condition UIKeyboard it not working. I try "UILayoutContainerView" but it not working too.
please.
|
Hi I have a big problem with iPhone 4.0 OS with this code
in condition UIKeyboard it not working. I try "UILayoutContainerView" but it not working too. please. |
||||
Dunno why. Can you tell me then: How to determine the keyboard type in the UIKeyboard class? |
||||
|
|
|
You can try this code:
And you also need to add this code to function didFinishLaunchingWithOptions in AppDelegate:
|
|||||
|
descriptionmethod programmatically like that. It is used to show you a nice human-readable string in the console and when debugging. Apple could change the output ofdescriptionat any time. Maybe you are looking forisKindOfClass:? if ([keyboard isKindOfClass:[UIKeyboard class]]) { ... } – Sebastian Celis Aug 31 '10 at 14:48