ios加载本地html无法加载图片问题解决
2015-08-05 本文已影响2195人
Lonely__M
- 将资源文件夹加入工程中,创建蓝色文件夹
- 获取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];