How to use an iPhone webView with an external HTML that references local images?
Posted
by costamatrix
on Stack Overflow
See other posts from Stack Overflow
or by costamatrix
Published on 2010-02-20T12:49:06Z
Indexed on
2010/04/06
3:03 UTC
Read the original article
Hit count: 318
Hi i have an external html on my webserver, that is requested by my iphone app through a webview... in order to make the page load faster, i want to change my html to request static files like css's and images from the local resource folder of my app....
can i do this?
my html is something like this:
<html> <body>
<img
src="file://Resources/test.png">
</body> </html>
© Stack Overflow or respective owner