I need to dynamically change the input for UITextField: keyboard with pickerView and back (pickerView with keyboard).
I know how to substitute keyboard with pickerView - via input
property of textfield.
But I don't know to substitute pickerView with keyboard back. How can I do this?
The flow is following:
Thank you
You can use,
textfield.inputView = nil;
and if you want to show keyboard directly after then you can use
[textfield becomeFirstResponder];
Hope this will work. :)