NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"myfile" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
NSLog(@"The html string is %@",htmlString);
[_Webview loadHTMLString:htmlString baseURL:nil];
答案 0 :(得分:0)
我认为如果您的html文件或字符串包含图片的网址,那么它会自动加载它,您不必担心它。查看你的html文件,确保你在html字符串中正确获取你的图片网址。