gpt4 book ai didi

iphone - 在 UIWebView 上打开本地 pdf 文件时应用程序崩溃

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:56 25 4
gpt4 key购买 nike

- (void) viewWillAppear:(BOOL)animated
{

[super viewWillAppear:animated];

NSString *path = [[NSBundle mainBundle] pathForResource:@"About" ofType: @"pdf"];

NSLog(@"%@", path);

NSURL *targetURL = [NSURL fileURLWithPath:path];

NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];

[_webView loadRequest:request];

}

最佳答案

只需使用以下代码在 WebView 中打开 PDF

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"About" ofType:@"pdf"]; 
[self.webVctr loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:filePath]]];

然后查看 PDF 是否存在?

这个想法可能对你有帮助

快乐的编码..

关于iphone - 在 UIWebView 上打开本地 pdf 文件时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11501782/

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