ios 加载本地html css文件 ps:css和html必须在同一文件夹下面

 NSString *path = [[NSBundle mainBundle] bundlePath];
    NSURL *baseURL = [NSURL fileURLWithPath:path];
    NSString * htmlPath = [[NSBundle mainBundle] pathForResource:@"reg"
                                                          ofType:@"html"];
    NSString * htmlCont = [NSString stringWithContentsOfFile:htmlPath
                                                    encoding:NSUTF8StringEncoding
                                                       error:nil];
    [self.webView loadHTMLString:htmlCont baseURL:baseURL];

 

posted @ 2015-05-14 18:03  曹县三胖暴打大猩猩  阅读(307)  评论(0编辑  收藏  举报