I have a UIWebView in my app which I want to use to display an image which will link to another url.

I'm using

<img src="image.jpg" /> to load the image.

The problem is that the image doesn't load (ie. it can't be found) even though it's added as a resource in my project and is copied into the bundle.

I've tried using NSBundle to get the full path of the image and using that and it still doesn't show up in the web view.

Any ideas?

link|improve this question

I'm no longer able to do this as of iPhone OS 3.0. :( More info (StackOverflow.com). – Joe D'Andrea Sep 5 '09 at 4:08
3  
Why the down vote? :/ – Jasarien Mar 17 '10 at 11:29
1  
Some people on this site are evil, you get an answer a minute before someone else and they mark you down... These people are lame and need to realise that they "lost" and to be nice about it... Not be vindictive and nasty! - I'll vote up your comment :) – Neurofluxation Mar 17 '10 at 17:27
1  
It's not necessarily that they're evil. Maybe they had a legitimate reason? We'll probably never know. If only they'd have the courtesy to explain why they voted down in a comment... – Jasarien Mar 17 '10 at 17:30
11  
It should be mandatory to write a comment on a vote down. – Robert Mar 11 '11 at 11:08
feedback

1 Answer

up vote 63 down vote accepted

Using relative paths or file: paths to refer to images does not work with UIWebView. Instead you have to load the HTML into the view with the correct baseURL:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[webView loadHTMLString:htmlString baseURL:baseURL];

You can then refer to your images like this:

<img src="myimage.png">

(from http://iphoneincubator.com/blog/windows-views/uiwebview-revisited)

link|improve this answer
1  
That's just what I was looking for, thanks! – Jasarien Apr 14 '09 at 14:35
[[NSBundle mainBundle] bundleURL] we can use this as bundleURL – NaveenShan Feb 10 at 10:55
1  
All this does for me is give me a string in my webview that I defined for my htmlString. i.e. all it shows on the page is "tour.html" – VagueExplanation Feb 29 at 17:11
feedback

Your Answer

 
or
required, but never shown

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