这是我加载 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
用于缓存图像。