I am loading an HTML file in my UIWebView and displaying it in my app. Now I want to all the user to edit this html in the UIWebView real time (i.e. when he is viewing it in the UIWebView). To put it in a different way; Does UIWebView allow editing it’s HTML content like a UITextField or UITextView does?
Share
No. It doesn’t allow HTML editing.
The closest solution I think of is getting the HTML content and put it in a
UITextViewbut that wouldn’t be very user-friendly.