UIWebView加载本地html文件_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UIWebView加载本地html文件

UIWebView加载本地html文件

 2016/5/18 5:34:24  红街咖啡  程序员俱乐部  我要评论(0)
  • 摘要:UIWebView*webView=[[UIWebViewalloc]initWithFrame:CGRectMake(0,0,KScreenWidth,KScreenHeight-64)];webView.backgroundColor=YYCToothWashViewBgColor;[self.viewaddSubview:webView];//加载本地html文件NSString*path=[[NSBundlemainBundle]bundlePath]
  • 标签:Web view UIWebView 文件
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

 

发表评论
用户名: 匿名