Is it possible to present my modal view controller with the keyboard already visible? Currently, the modal’s text view becomes the first responder as soon as it’s view is loaded, which causes the keyboard to animate coming up from the bottom.

I’d like the keyboard to already be on the modal and be a part of it’s transition. Any suggestions?
The keyboard is a separate
UIWindowobject. It is not in the same view hierarchy as your view controller’s view. To make this happen, you would have to dig around in theUIApplication‘swindowsproperty for the keyboard window and replace its default animation with a custom animation.