In an iPhone app, how do I keep the software keyboard from obscuring buttons, or UITextView fields in a View?
I've got the following layout:
View -\
UITextView
UIButton
... but, the keyboard obscures the button at the bottom when I'm typing in the UITextView. I tried using the following:
View -\
UIScrollView -\
UITextView
UIButton
... but, the window does not scroll as expected, so the user has no way of clicking the button.
How is this normally handled?