我有三个文本字段。其中一个我不想弹出键盘。而不是键盘UIPicker必须弹出。帮助我如何获得。
答案 0 :(得分:3)
当您将UITextField的inputView值设置为指向选择器时,当有人选择该UITextField时,将加载该选择器。确保首先配置选择器,然后设置UITextField的inputView值,如下面的代码所示。现在iOS将处理其他所有内容,并确保显示选择器。
UIPickerView *myPickerView = [[UIPickerView alloc] init];
//myPickerView configuration here...
myTextField.inputView = myPickerView;
指的是this link