我使用这行代码将本地 html 文件加载到 web 视图中:
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"html"]];
但是,我想在 url 中添加一些 http 参数,但到目前为止还没有运气。
我试过这个:
url = [url URLByAppendingPathComponent:@"?param1=1"];
但在此之后,一个 html 不会在 webview 中加载。
有没有办法在 webview 中使用 params 加载本地 html 文件?