I have a UITextView sitting on top of a UIView, and if I tap on it to open it for editing, then the keyboard is blocking the bottom of the view and I can not see it even though I can write in this area. Can I tell the UITextView to have a different scroll area or what is the solution?
|
|
An easy solution is to implement the
and
You can make the UITextView Frame smaller when the keyboard appears and make it full size again when the keyboard disappears...like this:
EDIT The solution above is bad...don't use it!!! Now I think it's a better idea to resize the UITextView in proportion to the keyboard size and not with a fixed value...because the size of the keyboard can change when an other language become chosen or the device become rotated...of course -.- At first you must register your
Then you have to implement the two methods The size of the actual keyboard is contained in the
|
||||
|
|
|
Apple has some code samples that deal with this exact situation. |
|||||||||||
|
|
I finally got it working. Here is my solution, can you guys spot any errors in my design?
|
|||
|
|