无法设置UIKeyboard附件视图

时间:2012-06-27 16:47:12

标签: ios ios5 uikit uitextfield uikeyboard

我有一个UIToolbar的实例,里面包含UITextField。我想将工具栏设置为其包含的UITextField的附件视图。

我这样做的方式如下:

[myTextView setInputAccessoryView:myToolbar];

当我编译并运行代码时,当我按下文本字段时,整个键盘都会消失。我特别确定我设置了inputAccessoryView而不是inputView。似乎整个输入视图都被替换了,没有任何明确的指示。

有没有人知道解决这个问题的方法?

1 个答案:

答案 0 :(得分:5)

在输入附件视图中放置文本字段通常不太好...如果您将工具栏放在视图底部然后使用UIKeyboardWillChangeFrameNotification移动工具栏,那么最好的方法是键盘......

在viewDidLoad中:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChange:) name:UIKeyboardWillChangeFrameNotification object:nil];

在视图控制器的代码中的某处:

-(void) keyboardWillChange:(NSNotification*)notify {

    CGRect endFrame;
    float duration = [[[notify userInfo] valueForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];
    [[[notify userInfo] valueForKey:UIKeyboardFrameEndUserInfoKey] getValue:&endFrame];
    endFrame = [self.view convertRect:endFrame fromView:nil];
    float y = (endFrame.origin.y > self.view.bounds.size.height ? self.view.bounds.size.height-44 : endFrame.origin.y-44);

    [UIView animateWithDuration:duration animations:^{
        toolbar.frame = CGRectMake(0, y, self.view.bounds.size.width, 44);
    }];

}