基本上我有一个 webview,我想在加载的页面上运行一些 javascript。基本加载是这样发生的:
NSString *filePath = [[NSString alloc] initWithString:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"login.js"]];
NSURL *imageURL = [NSURL filePath];
NSString *basicLoadScript = [NSString stringWithFormat:@"document.write('<script src=\"%@\"></script>')",imageURL];
[self.webView stringByEvaluatingJavaScriptFromString:basicLoadScript];
这是我最近的尝试,我得到了错误:
不允许加载本地资源
有没有更好的方法来加载文件?(或至少一个有效的)干杯。