Finger with scrollable UIWebView when keyboard is inserted

In the application I am writing, I have a UIWebview at the top and some UITextFields at the bottom that I want the user to be able to enter depending on what is in the webview. But when they touch the text field and the keyboard pops up, the user loses the ability to manipulate the web page to see different parts.

Is there a way to keep the keyboard and still be able to manipulate the UIWebView?

+1


source to share


1 answer


Not. I believe the keyboard is modal, so you cannot access the form below it.

You can answer

- (void)keyboardWillShow:(NSNotification*)aNotification;
- (void)keyboardWillHidde:(NSNotification*)aNotification;

      



and scroll View up or down when the keyboard is displayed ...

Example here

+1


source







All Articles