我正在执行以下步骤以在 uiwebview 中显示 html 文件。
1.解压缩.epub文件,从中获取数组中的html文件内容
NSData *data=[NSData dataWithContentsOfFile:filepath];
[arrayDatacontent addObject:data];
此过程完成后。删除了解压缩的 .epub 文件。
-
2.
NSData *htmlString=(NSData *)[arrayDatacontent objectAtIndex:2];
NSString *imagePath =[[NSBundle mainBundle] resourcePath];
imagePath = [imagePath stringByReplacingOccurrencesOfString:@"/" withString:@"//"]; imagePath = [imagePath stringByReplacingOccurrencesOfString:@" " withString:@"%20"]; [webview4epub loadData:htmlString MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:[NSString stringWithFormat:@"file:/%@//",imagePath]]];
从 webview 中加载的内容文本中。但是没有显示相关图像。