使用UITextField添加了一个pickerView。
我试图以编程方式触发pickerView。
func myTypeDetector (textfield: UITextField) {
typeLabel.delegate = self
self.setType(textField: typeLabel)
}
override func viewDidLoad() {
super.viewDidLoad()
typeLabel.addTarget(self, action: #selector(NewSpeciesVC.myTypeDetector(textfield:)), for: UIControlEvents.touchUpInside)
}
我已经找到了如何通过UIButton
这样做self.typeLabel.sendActions(for: .touchUpInside)
但是,这不适用于UITextField。
我想以编程方式使用TextField创建事件,或使用UIButton创建PickerView事件。
有什么建议吗?
答案 0 :(得分:0)
我需要做同样的事情并弄清楚:
self.typelabel.becomeFirstResponder()