这是我加载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的样子。这里代替image.png我想使用webservice调用来填写图像。
<html>
<body>
<img src="image.png" />
</body>
</html>
另外,我想使用SDWebImage
来缓存图像。
答案 0 :(得分:0)
使用正则表达式预处理HTML字符串,该表达式将“img src ...”文本转换为完整的URL。