如何閱讀webview中Resourse文件夾子文件夾中的PDF文件?
我在我的application.i國土資源文件夾的子文件夾的一些PDF文檔甲酸已嘗試這樣way.here是我的代碼讀取這些文件。
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];
在這段代碼中的「路徑」返回Nill值,當我在console.but檢查當我檢查字符串「章」,它存儲我的願望的PDF文檔名,務必將其擁有的PDF文檔名之一。在控制檯中,當我的程序崩潰時,它顯示了一些這樣的事情。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
'-[UIWebView scrollView]: unrecognized selector sent to instance 0x6587d20'
任何幫助將得到通過。
這裏的pathForResource是字符串,並檢查你提供了正確的字符串。你提供的是哪一章?它是字符串嗎? – 2012-08-04 13:01:32
章是包含我的願望文件名的字符串。 – jamil 2012-08-04 13:04:07
remvove this line [webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@「window.scrollTo(0.0,50。0)「]];刪除這一行作爲你的設置內容偏移量爲500 – 2012-08-04 13:25:47