UIWebView加载本地html文件_html/css_WEB-ITnose
程序员文章站
2022-04-14 12:13:06
...
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];
上一篇: python的即时标记项目练习笔记
下一篇: js实现链式栈的代码实例
推荐阅读
-
JS+HTML5 FileReader实现文件上传前本地预览功能
-
Flutter中如何加载并预览本地的html文件的方法
-
javaWeb项目加载HTML文件时报错 [No Find /index.html]
-
IOS中使用UIWebView 加载网页、文件、 html的方法
-
vue-cli打包后本地运行dist文件中的index.html操作
-
安卓开发笔记(二十二):读取本地(内置)html文件并实现和Javascript交互
-
Chrome中利用HTML5实现具有文件“编辑”及“下载”功能的本地应用
-
Android WebView加载本地资源文件(html、css、js)
-
html5本地存储和文件上传
-
用Python下载一个网页保存为本地的HTML文件实例