I have loaded an UIWebView
with .rtf file.
Now, I want to get all HTML elements or elements present inside the UIWebView
. Is there any method available to get it?
Thanks for your answers.
I have loaded an UIWebView
with .rtf file.
Now, I want to get all HTML elements or elements present inside the UIWebView
. Is there any method available to get it?
Thanks for your answers.
You can get all of the
HTML
content of yourUIWebView
with the call:After this it's up to you.
You could use JavaScript to get the element...
Hope that helps...