这是我的第一个应用。我有两个文本字段用于选择项目,第二个用于选择任务。如果我从第一个文本字段中选择一个项目,并在第二个文本字段中显示相关任务。如果任务数组为空,那么我必须显示键盘以输入一些文本以输入第二个文本字段。请有人指导我如何完成这项任务。
答案 0 :(得分:0)
让UITextField
为firstTextField
和secondTextField
两个UITextField
。然后,您可以将 if firstTextField.text == "" {
secondTextField.inputView = nil
} else {
secondTextField.inputView = loadPicker()
}
的输入视图更改为:
func loadPicker() -> UIPickerView {
// Load picker and return from here
return UIPickerView()
}
其中,
index.html