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文件的主要内容,如果未能解决你的问题,请参考以下文章
如何将本地 HTML 文件作为字符串加载到 UIWebView?