我正在尝试在Web视图上传html页面,但图像未加载

时间:2015-03-09 10:13:25

标签: ios uiwebview

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];

1 个答案:

答案 0 :(得分:0)

我认为如果您的html文件或字符串包含图片的网址,那么它会自动加载它,您不必担心它。查看你的html文件,确保你在html字符串中正确获取你的图片网址。