美文网首页iOS基础·OC高级篇OC学习
OC 加载一个本地HTML页面

OC 加载一个本地HTML页面

作者: CodeLuck | 来源:发表于2017-08-24 14:06 被阅读46次

    简单记录,拿来备份

    UIWebView * webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HIGHT+64)];

    webView.backgroundColor = [UIColor clearColor];

    [self.view addSubview:webView];

    NSString *path = [[NSBundle mainBundle] bundlePath];

    NSURL *baseURL = [NSURL fileURLWithPath:path];

    NSString * htmlPath = [[NSBundle mainBundle] pathForResource:@"用户协议"

    ofType:@"html"];

    NSString * htmlCont = [NSString stringWithContentsOfFile:htmlPath

    encoding:NSUTF8StringEncoding

    error:nil];

    [webView loadHTMLString:htmlCont baseURL:baseURL];

    参考链接 详细了解的可以看这里

    相关文章

      网友评论

        本文标题:OC 加载一个本地HTML页面

        本文链接:https://www.haomeiwen.com/subject/qgqedxtx.html