如何为一个textField设置pickerView和Keyboard

时间:2018-05-11 05:58:41

标签: swift uitextfield uipickerview

这是我的第一个应用。我有两个文本字段用于选择项目,第二个用于选择任务。如果我从第一个文本字段中选择一个项目,并在第二个文本字段中显示相关任务。如果任务数组为空,那么我必须显示键盘以输入一些文本以输入第二个文本字段。请有人指导我如何完成这项任务。

I have attached my project image

1 个答案:

答案 0 :(得分:0)

UITextFieldfirstTextFieldsecondTextField两个UITextField。然后,您可以将 if firstTextField.text == "" { secondTextField.inputView = nil } else { secondTextField.inputView = loadPicker() } 的输入视图更改为:

func loadPicker() -> UIPickerView {
    // Load picker and return from here
    return UIPickerView()
}

其中,

index.html