I have a webview that loads a pdf file:
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL
fileURLWithPath:[[NSBundle mainBundle] pathForResource:fileName
ofType:@"pdf"]isDirectory:NO]]];
It works fine on iPhone OS 2.x, but on iPhone 3.0, when I click PDF to scroll, this error appears, and the application crashes:
- [NSCFDictionary _absoluteLinkURL]: unrecognized selector sent to instance 0x1c0230 Application terminated due to an uncaught exception "NSInvalidArgumentException", reason: "- [NSCFDictionary _absoluteLinkURL]: unrecognized selector sent to instance 0x1c0230 '
source
share