我正在尝试在UIWebview
中显示pdf但我收到错误。任何人都可以帮助我为什么这不起作用?错误是:
*由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'* - [NSURL initFileURLWithPath:]:nil string parameter'
除 path 之外,每个字符串都是正确的,这似乎是0长度,我不知道为什么。
NSArray *docPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDirectory = [docPath objectAtIndex:0];
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, 700, 500)];
NSString *path = [[NSBundle mainBundle] pathForResource:@"pdfDoc" ofType:@"pdf" inDirectory:documentDirectory];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
[self.view addSubview:webView];
答案 0 :(得分:1)
你不能这样做:
NSString *path = [[NSBundle mainBundle] pathForResource:@"pdfDoc" ofType:@"pdf" inDirectory:documentDirectory];
因为NSBundle
只能获取包中文件的路径,而不能在文档目录中获取(因此它返回nil
并且您收到错误)。
如果文件在捆绑包中,则仅按名称搜索。如果文件位于文档文件夹中,请获取该文件夹的路径并附加名称(stringByAppendingPathComponent:
)。然后使用该路径创建文件URL。