When the keyboard slides up in my iPhone application, it obscures a large portion of the screen. How do I adjust my views so that they are not hidden under the keyboard?
views:
34answers:
2
A:
I usually move up my whole UIView so you can see both keyboard and textfield
toupper
2010-08-25 09:27:35
how to move whole view
Nauman.Khattak
2010-08-25 09:32:30
myView.frame = CGRectMake(0,-100,320,480)To make it smoother you can try to make it through an animation.
toupper
2010-08-25 09:49:45