iphone - UIScrollView scroll problem -
I have a UIScrollView and there is a text field at the bottom of the screen when I select the textfield then the keyboard text from the file Is displayed above i UIView in the UIScrollView is not enough to scroll enough and some space is free for the keyboard. That's why I have tried to expand the UIUU programmatically. What does this have to me:
Thanks.
You can register to get your view controller and then view controller's view frame on the keyboard Move above the size, which is provided in the notification.
CGFF frame = self.view.frame; Frame.origin.y - = keyboard.size.height; Self.view.frame = frames;
Reverse for UIKeyboardWillHideNotification
Comments
Post a Comment