Quote:
Originally Posted by WiiFan2012
I am starting to code an WYSIWYG Website Creator for iPad; and would like to know if it is even possible to display HTML objects as an image.
Example:
Code:
<a href="http://google.com"><img src="google.png"></a>
That would display as the Google image.
What pointers could you give me?
Thanks for the starting help!
|
Sounds like fun, tried a project similar to that myself a while ago.
But that is not important, anyway, what you want is to use a UIWebView. Use UIWebViews "loadHTMLString:baseURL:", where HTMLString is what you had above, and baseURL is the base file location (for relative paths in the HTML).
Have fun!