I have a UIViewController , it has a field for putting the location , a field where I write some skills, and a uiWebView where I write the description. I use the uiWebView because I send the description in a html format to the backend. It suits my needs perfectly. What I'm having problems though , is that in iphone 4 screen the keyboard covers the uiWebView totally because the uiWebView is located from the vertically middle of the screen till the bottom.
So in order for me to make an offset and set the uiWebView above the keyboard I need to know when the uiWebView has been touched by the user (when the user has started typing on it). As much as I've searched on a solution I'm not being able to get a response from the uiWebView to tell me when it's being touched by the user , so I can then put it an offset.
So my question is , is there a way where uiWebView can tell me "Hey the user has started typing on me" ?