gpt4 book ai didi

xcode - DiskImageCache : Could not resolve the absolute path of the old directory. 未能找到 PDF header : `%PDF' 未找到

转载 作者:行者123 更新时间:2023-12-04 08:48:44 27 4
gpt4 key购买 nike

在我的一个 View 中,我只想在 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 PDF

NSString *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 : Could not resolve the absolute path of the old directory. 未能找到 PDF header : `%PDF' 未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25412424/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com