8

我有一个文本字段,其中有一个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];
4

1 回答 1

1

这不是一个完整的解决方案,但如果您在-viewDidLoad:方法内手动设置 UIInputView 的背景,则可以将这种影响降到最低。幸运的是,之后无需将其删除。出现后 UIInputView 将具有真正的键盘背景和模糊效果。

UIColor *tmpBackground; //Keyboard have color base on the current device.
if ([UIDevice isPad] || (UIDevice isPod)]) { //These are my helpers, you have to implement it
   tmpBackground = [UIColor colorWithRed:207/255.0f green:210/255.0f blue:214/255.0f alpha:1];
} else {
   tmpBackground = [UIColor colorWithRed:216/255.0f green:219/255.0f blue:223/255.0f alpha:1];
}
[textField.inputAccessoryView setBackgroundColor:tmpBackground];

PS而且我知道,以这种愚蠢的方式定义颜色并不是一个完美的解决方案。

于 2014-03-24T15:21:53.337 回答