Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am in the development phase of an iPad application in which user can edit the html content by using content editable feature of uiwebview. My doubt is that , is there any control or third party frame work available for adding a custom tag in the html through uiwebview.

Thanks in Advance

share|improve this question

1 Answer

up vote 0 down vote accepted

You can manipulate the DOM in the HTML page within the UIWebView and add whatever content you want to the dom. There is no API or framework available for this.

You have to do it using javascript and execute the javascript using

stringByEvaluatingJavaScriptFromString:
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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