0

这是我加载 html 文件的代码,现在在 html 中我想加载动态图像。

NSString *path = [[NSBundle mainBundle] pathForResource:@"Myfile" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:path];

NSString *resourceURL = [[NSBundle mainBundle] resourcePath];
resourceURL = [resourceURL stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
resourceURL = [resourceURL stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSURL *baseURL = [NSURL URLWithString:[NSString stringWithFormat:@"file:/%@//",resourceURL]];

[self.webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:baseURL];

这就是我的 html 的样子。在这里,我想使用 webservice 调用而不是 image.png 来填充图像。

<html>
    <body>
        <img src="image.png" />
    </body>
</html>

我也想SDWebImage用于缓存图像。

4

1 回答 1

0

使用将“img src ...”文本转换为完整 URL 的正则表达式预处理您的 HTML 字符串。

于 2013-06-03T13:08:27.443 回答