0

我正在尝试将本地图像显示到UIWebView. 此 Web 视图是使用本地 HTML 代码生成的。我正在使用以下代码:

[htmlPage appendStringWithFormat:@"< img src=\"%@\" alt=\"image\" height=\"100\" 

width=\"100\"/>",[[NSBundle mainBundle] pathForResource:@"myImage" ofType:@"png"];
4

1 回答 1

2

您需要将 HTML 加载到 webview 中

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

然后你的 HTML 应该像这样引用图像:

body {
    background-image:url('img/myBg.png');
}
于 2013-09-04T06:31:31.457 回答