美文网首页IOSiOS点点滴滴iOS开发
ios加载本地html无法加载图片问题解决

ios加载本地html无法加载图片问题解决

作者: Lonely__M | 来源:发表于2015-08-05 16:25 被阅读2195次
    • 将资源文件夹加入工程中,创建蓝色文件夹
    Paste_Image.png
    • 获取html,展示即可
    
    UIWebView *web = [[UIWebView alloc] initWithFrame:self.view.bounds];
        [self.view addSubview:web];
        
        NSURL *filePath = [[NSBundle mainBundle] URLForResource:@"文件目录/xxx.html" withExtension:nil];
        NSURLRequest *request = [NSURLRequest requestWithURL:filePath];
        
        [web loadRequest:request];
    

    相关文章

      网友评论

      本文标题:ios加载本地html无法加载图片问题解决

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