我有一个在PhoneGap中设计的iOS应用。问题是应用程序在导航过程中崩溃了。该应用程序非常庞大,有很多视频,但遗憾的是我无法找到引发错误的内容。
如上所述here,我创建了error.html并在MainViewController.m
中添加了这些行:
(void) webView:(UIWebView*)theWebView didFailLoadWithError:(NSError*)error
{
[theWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"error" ofType:@"html" inDirectory:@"www"] isDirectory:NO]]];
}
不幸的是,两种方法都没有效果。知道我应该去哪个方向吗?