UIKeyboard не добавляется в подпредставления UIWindow - PullRequest
0 голосов
/ 03 августа 2010

Раньше я использовал следующий код, чтобы добавить UIToolbar чуть выше UIKeyboard и быть присоединенным к нему. Я просто переключился на iPhone OS 4 и понял, что он больше не работает.

for (UIWindow *keyboardWindow in [[UIApplication sharedApplication] windows]) {
    for (UIView *keyboard in [keyboardWindow subviews]) {

        //print all uiview descriptions

        if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES) {
            .. Some code to attach the UIToolbar
        }   
    }
}

Я понял, что код не попадает в оператор if. Я попытался распечатать все описания UIView чуть выше if и не увидел ничего, связанного с UIKeyboard. Код работал нормально в OS 3.0 и 3.1. Так кто-нибудь имеет представление об этом?

Ответы [ 2 ]

1 голос
/ 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");
                //add toolbar here

                UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, -40, 100, 40)];
                UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Test button" style:UIBarButtonItemStyleBordered target:self action:@selector(buttonClicked:)];
                NSArray *items = [[NSArray alloc] initWithObjects:barButtonItem, nil];
                [toolbar setItems:items];
                [items release];
                [currentView addSubview:toolbar];

                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];
0 голосов
/ 04 августа 2010

Поскольку вы полагаетесь на недокументированное поведение, неудивительно, что оно больше не работает в 4.0.Вместо этого используйте свойство inputAccessoryView вашего представления, которое является документированным способом сделать это в OS 3.2 +.

...