I'm making an html editor component for an app (using UIWebView with contentEditable in iOS 5.0), and got stuck at how to handle UIWebView first responder status

[webView isFirstResponder], [webView becomeFirstResponder] and [webView resignFirstResponder] don't seem to work, and i've no idea how to make the webView become or resign it by code

If anyone knows how to work this out i would be very grateful, thanks in advance!

link|improve this question
feedback

1 Answer

I met the same problem recently, but solved it using pure JavaScript. Actually it doesn't need any Objective-C First Responder related methods. I just used the JavaScript to change the UIWebView's content - the targeting HTML element's contentEditable attribute value according to the requirement.

For example, using the following code to hide the Keyboard that called by the UIWebView's editable content:

[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('target').setAttribute('contentEditable','false')"];

Hope this is helpful. :)

link|improve this answer
1  
thanks a lot! however, i also need use of the "becomeFirstResponder" and "isFirstResponder" equivalent methods for other purposes – Ismael Dec 14 '11 at 13:11
i got stuck with other things in my work and couldn't fully test this, but now i did, and it doesn't seem to work, iPhone or iPad ... do you do anything else that could affect the keyboard?? – Ismael Dec 27 '11 at 17:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.