8
我有一個文本框,它有一個UIInputView輸入附件視圖。當鍵盤動畫時,UIInputView背景是不可見的
當我點擊我的文本字段,鍵盤飛入視圖,我可以看到附件視圖的子視圖,但它沒有可見的背景。 鍵盤動畫完成後,UIInputView的背景會彈出到視圖中。
我能做些什麼來強制UIInputView的背景在鍵盤動畫仍在進行時可見?
這裏是我的代碼:
UIInputView *inputView = [[UIInputView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, CGRectGetWidth(self.bounds), 44.0f) inputViewStyle:UIInputViewStyleKeyboard];
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
button.frame = CGRectInset(inputView.bounds, 15.0f, 2.0f);
[button setTitle:@"Button" forState:UIControlStateNormal];
[inputView addSubview:button];
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0.0f, 0.0f, CGRectGetWidth(self.bounds), 44.0f)];
textField.inputAccessoryView = inputView;
[self addSubview:textField];
想在這裏看到答案。這真是令人不安。 –