UIWebView with contentEditable (html editing), first responder handling?
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! Here is how I overwrite these methods in a UIWebView subclass ( content is the id of the editable element): -(BOOL)resignFirstResponder { [self setUserInteractionEnabled:NO]