UIInputView无法按预期工作

时间:2014-04-17 13:28:41

标签: ios7 keyboard inputview

这可能是iOS7中的一个错误..?当我添加accessoryview时,我在viewDidLoad中使用以下代码:

UIView *inputAccView = [[UIInputView alloc] initWithFrame:CGRectMake(0, 0.0, 320, 50) inputViewStyle:UIInputViewStyleKeyboard];

按预期工作,背景与iOS7中的常规键盘相同。但是当我使用:

[textfield setInputView:[[UIInputView alloc] initWithFrame:CGRectMake(0, 0,320, 215) inputViewStyle:UIInputViewStyleKeyboard]];

它现在可以正常工作,有时会在附加图像中显示透明模糊背景,有时只返回灰色背景。我只在模拟器中运行

我做错了什么或这是一个错误?enter image description here

1 个答案:

答案 0 :(得分:0)

如果您打算将输入视图作为您的ui键盘的工具栏附件,那么您是否应该将其添加为[textField setInputAccessoryView:myInputView]