我在我的应用程序的 Resourse 文件夹的子文件夹中有一些 PDF 格式文档。我尝试以这种方式阅读这些文档。这是我的代码。
NSString *path = [[NSBundle mainBundle] pathForResource:chapter ofType:@"pdf"];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[[webView scrollView] setContentOffset:CGPointMake(0,500) animated:YES];
[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"window.scrollTo(0.0, 50.0)"]];
[webView loadRequest:request];
[self.view addSubview:webView];
[webView release];
在此代码中“路径”返回零值,当我签入控制台时。但是当我检查存储我想要的 pdf 文档名称的字符串“章节”时,它总是有一个 pdf 文档名称。当我的程序崩溃时在控制台中它显示了这样的东西。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
'-[UIWebView scrollView]: unrecognized selector sent to instance 0x6587d20'
任何帮助都会被给予。