How to disable editing textField
manually. I have UIPickerView
that I want to use as inputView. But seems I still have ability to copy paste in textfield.
I found this question and seems that's what I am looking for, but sources below don't help me
func textFieldShouldBeginEditing(textField: UITextField) -> Bool {
questionField.resignFirstResponder();
// Additional code here
return false
}
Keyboard never gets screen in this case.