Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to embed local images in UIWebView?

Is there an easy way to embed local images in an UIWebView? For example, I would want to embed an logo.png image in the UIWebView, which I've added to the Resources folder in Xcode. Would I simply add an img HTML tag for this?

like image 459
openfrog Avatar asked Sep 27 '10 22:09

openfrog


1 Answers

yes it's very simple but, for others, remember to put "file://" at the beginning of your path

for example:

NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"png"];
[myWebView loadHTMLString:[NSString stringWithFormat:@"<html><body><img src=\"file://%@\"></body></html>",path] baseURL:nil];
like image 195
Robbbberto Avatar answered Nov 04 '22 08:11

Robbbberto