UIWebView 可以使用相对路径加载HTML,方法如下
NSString * urlStr= [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
在WKWebView中使用相对路径加载HTML,显示的是空白,所以要使用下面的方法去加载。
NSURL * pathUrl = [[NSBundle mainBundle] URLForResource:@"index.html" withExtension:nil];
网友评论