开发者

How to embed local images in UIWebView?

开发者 https://www.devze.com 2023-01-18 00:44 出处:网络
Is there an easy way to embed local images in an UIWebView? Fo开发者_JAVA技巧r example, I would want to embed an logo.png image in the UIWebView, which I\'ve added to the Resources folder in Xcode. Wo

Is there an easy way to embed local images in an UIWebView? Fo开发者_JAVA技巧r 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?


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];
0

精彩评论

暂无评论...
验证码 换一张
取 消