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
So you're trying to hide the keyboard immediately after the text field is selected and display something else?
There's two things I can think of:
Give the text field some time to get it together before resigning the first responder:
[textField performSelector:@selector(resignFirstResponder) withObject:nil afterDelay:0.5];
Set the inputView
property of the text field to nil or a UIView
with a clear background color.