UIK клавиатура с iPhone OS 4 - PullRequest
       4

UIK клавиатура с iPhone OS 4

0 голосов
/ 31 августа 2010

Привет У меня большая проблема с iPhone 4.0 OS с этим кодом

if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES) {
}

в состоянии UIKeyboard это не работает.Я пытаюсь "UILayoutContainerView", но он тоже не работает.

, пожалуйста.

Ответы [ 2 ]

0 голосов
/ 09 января 2011
@"<UIPeripheralHostView" will work instead of @"<UIKeyboard"

Не знаю почему.

Можете ли вы сказать мне тогда: Как определить тип клавиатуры в классе UIKeyboard?

0 голосов
/ 13 сентября 2010

Вы можете попробовать этот код:

- (BOOL) findKeyboard:(UIView *) superView; 
{
    UIView *currentView;
    if ([superView.subviews count] > 0) {
        for(int i = 0; i < [superView.subviews count]; i++)
        {

            currentView = [superView.subviews objectAtIndex:i];
            NSLog(@"%@",[currentView description]);
            if([[currentView description] hasPrefix:@"<UIKeyboard"] == YES)
            {

                NSLog(@"Find it");

                return YES;
            }
            if ([self findKeyboard:currentView]) return YES;
        }
    }

    return NO;

}

-(void) checkKeyBoard {
    UIWindow* tempWindow;

    for(int c = 0; c < [[[UIApplication sharedApplication] windows] count]; c ++)
    {
        tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:c];
        if ([self findKeyboard:tempWindow])
            NSLog(@"Finally, I found it");  
    }
}

- (void)keyboardWillShow:(NSNotification *)note {
    [self performSelector:(@selector(checkKeyBoard)) withObject:nil afterDelay:0];
}

И вам также нужно добавить этот код в функцию didFinishLaunchingWithOptions в AppDelegate:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...