Reputation: 3067
I have a UITextView at the middle of a View, a UIToolBar at the bottom of a View. I want a visual keyboard to appear above a UIToolBar when I touch on UITextView. How can I do it?
Upvotes: 1
Views: 415
Reputation: 4485
You can't. The position of the keyboard isn't under the control of the application. (Oh, you could muck around in the UIApplication's UIWindow list to find the keyboard window and move it, but then Apple wouldn't accept your app.)
Upvotes: 3