![]()
class="code_img_closed" src="/Upload/Images/2016051805/0015B68B3C38AA5B.gif" alt="" />
![]()
logs_code_hide('017f1838-8f0a-4076-bf38-4dbb5c6b113b',event)" src="/Upload/Images/2016051805/2B1B950FA3DF188F.gif" alt="" />
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];
View Code