UIWebView加载本地html文件

Posted 小敏的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIWebView加载本地html文件相关的知识,希望对你有一定的参考价值。

UIWebView * webView = [[UIWebView alloc] initWithFrame: CGRectMake(0, 0, KScreenWidth, KScreenHeight-64)];
webView.backgroundColor = YYCToothWashViewBgColor;
[self.view addSubview:webView];
    
//加载本地html文件
NSString * path = [[NSBundle mainBundle] bundlePath];
NSURL * baseURL = [NSURL fileURLWithPath:path];
    
//protocal   html文件名称    html文件类型
NSString * htmlPath = [[NSBundle mainBundle] pathForResource:@"protocal" ofType:@"html"];
NSString * htmlCont = [NSString stringWithContentsOfFile:htmlPath encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlCont baseURL:baseURL];

 

以上是关于UIWebView加载本地html文件的主要内容,如果未能解决你的问题,请参考以下文章

UIWebView 从本地文件系统加载 HTML 文件

如何将本地 HTML 文件作为字符串加载到 UIWebView?

UIWebView的加载本地数据的三种方式

使用 swift 将本地 html 加载到 UIWebView

ios如何加载本地文件

代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?