vote up 4 vote down star

Hey guys,

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 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?

flag

2 Answers

vote up 6 vote down check

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|flag
That's just what I was looking for, thanks! – Jasarien Apr 14 at 14:35
vote up 0 vote down

I'm no longer able to do this as of iPhone OS 3.0. :(

More info (StackOverflow.com).

link|flag

Your Answer

Get an OpenID
or

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