I\'m making a UITextField that has a UIPickerView as inputView. Its all good, except that I can edit by copy, paste, cut and select te
UITextField
UIPickerView
inputView
In Swift:
func textFieldShouldBeginEditing(textField: UITextField) -> Bool { questionField.resignFirstResponder(); // Additional code here return false }