码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView加载本地html文件

时间:2016-05-18 10:19:49      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

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文件

标签:

原文地址:http://www.cnblogs.com/fengmin/p/5504010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!