My UIWebView loads a contenteditable html content. I want to let the UIWebView get focused and show keyboard in the UIWebView.
I use [self.webview becomeFirstResponder], but it doesn’t work. Is there any work around method?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UIwebview is not editable and you can not make it first responder.
Where as you can use javascripts for that purpose , try out this answer
UIWebView with contentEditable (html editing), first responder handling?