我正在尝试将我的 Backbone 应用程序的 javascript 手动注入 UIWebview(以便在应用程序启动时避免客户端下载 1MB JS 文件)。
下面的代码在应用程序的 DEBUG 版本中运行良好,但一旦构建了 Ad Hoc 版本版本并对其进行测试,应用程序就无法正确加载。我认为这是某个地方的 JS 错误,但我不知道如何调试在发布版本中运行的 UIWebview(据我所知,Safari 开发工具只能在 Debug 中工作)。
- (void)webViewDidFinishLoad:(UIWebView *)webView {
// Inject the JS
NSLog(@"Injecting JS 1 from disk");
NSString *path = [[NSBundle mainBundle] pathForResource:@"backbone_application" ofType:@"js"];
NSString *code = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
NSString *jsCode = [NSString stringWithFormat:@"var script=document.createElement('script'); script.type='text/javascript'; script.text=\"%@\"; document.head.appendChild(script);", code];
[self.webPortal stringByEvaluatingJavaScriptFromString:jsCode]
}
关于为什么这会在 RELEASE 模式下失败的任何想法?关于如何在发布版本中测试 UIWebview javascript 错误的任何建议?