Instead of showing the keyboard I want to display a popover view when a textField is selected (my code is at the bottom). If the keyboard isn\'t showing then everything wor
If inputView
on the text field doesn't get you what you want, you can also simply put an invisible button on top of the UITextField
and just show the popover from the button's action. To the user it will appear as if the text field brought up the popover. If at that point the keyboard is still there, call resignFirstResponder
on all possible first responders (text fields etc.).