I have an alert view with a uitextfield added as a subview.
In my uitableview controller the keyboard shows fine.

However in a different view I wanted to do the same thing. So instead of using a UITableView Controller I made it a UIViewController so that I could add a toolbar at the bottom of the view.
But when I display the UIAlertView the keyboard is hidden. I’m thinking it’s behind the view because the alert view moves up to make room for the keyboard.

Any ideas?
UPDATE:
The reason the keyboard was being hidden was because I was dismissing a modalviewcontroller after showing the alert. For some reason it would dismiss the keyboard also I guess. Just rearranged the order an fit works fine now…
Try implementing the
didPresentAlertView:method and inside set the text field tofirstResponderlike so:UIAlertViewDocumentationUIAlertViewDelegateDocumentation