xcode – DiskImageCache:无法解析旧目录的绝对路径.找不到PDF标题:找不到`%PDF’

xcode – DiskImageCache:无法解析旧目录的绝对路径.找不到PDF标题:找不到`%PDF’,第1张

概述在我的一个视图中,我只想在UIWebView中显示pdf文件. 我的头文件代码: #import <UIKit/UIKit.h>@interface FCOMViewController : UIViewController{IBOutlet UIWebView *fcomWebView;}//flag to denote if this is first time the app i 在我的一个视图中,我只想在UIWebVIEw中显示pdf文件.

我的头文件代码:

#import <UIKit/UIKit.h>@interface FCOMVIEwController : UIVIEwController{IBOutlet UIWebVIEw *fcomWebVIEw;}//flag to denote if this is first time the app is run@property (nonatomic) BOol firstRun;@end

这里是实现文件中的方法:

- (voID)vIEwDIDLoad {    //Show the procedures pdfNsstring *path = [[NSBundle mainBundle] pathForResource:@"b777normalprocedures" ofType:@"pdf"];NSURL *url = [NSURL fileURLWithPath:path];NSURLRequest *request = [NSURLRequest requestWithURL:url];[fcomWebVIEw loadRequest:request];[fcomWebVIEw setScalesPagetoFit:YES];

该应用程序启动正常,不崩溃或任何东西.引用出口已设置,但不显示pdf.控制台说:

diskimageCache: Could not resolve the absolute path of the old
directory. Failed to find pdf header: `%pdf’ not found.

pdf在项目目录中,我已经仔细检查过它是否正确写入.

我能在这做什么?任何帮助,将不胜感激.

解决方法 如果您的目标是iOS 8.0,请尝试此 *** 作:
Nsstring *path = [[NSBundle mainBundle] pathForResource:@"b777normalprocedures" ofType:@"pdf"];NSURL *targetURL = [NSURL fileURLWithPath:path];NSData *pdfData = [[NSData alloc] initWithContentsOfURL:targetURL];[_webVIEw loadData:pdfData MIMEType:@"application/pdf" textEnCodingname:@"utf-8" baseURL:nil];
总结

以上是内存溢出为你收集整理的xcode – DiskImageCache:无法解析旧目录的绝对路径.找不到PDF标题:找不到`%PDF’全部内容,希望文章能够帮你解决xcode – DiskImageCache:无法解析旧目录的绝对路径.找不到PDF标题:找不到`%PDF’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1104656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存