gpt4 book ai didi

iphone - 在 iBooks 中打开 PDF

转载 作者:行者123 更新时间:2023-12-03 21:02:19 25 4
gpt4 key购买 nike

我的代码文件中放置了一个 pdf 文件。我希望它在 iBooks 中打开,在研究时我发现了这个:

NSString *stringURL = @"itms-books:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

NSString *stringURL = @"itms-bookss:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

我如何使用这个或其他什么方式可以在 iBook 中打开我的 PDF 文件?问候

最佳答案

也许为时已晚,但我创建了一个小示例,其中使用了 andycodes 中解释的方法。我上传到了Github,你可以在这里下载:

https://github.com/cjimenezpacho/openpdfibooks

基本上是 IBAction 中的这段代码和所需的委托(delegate)方法:

NSURL *url = [[NSBundle mainBundle]
URLForResource: @"iPhoneintro" withExtension:@"pdf"];
self.docController = [UIDocumentInteractionController interactionControllerWithURL:url];
self.docController.delegate = self;
[self.docController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];

Apple 文档链接:

类别: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDocumentInteractionController_class/Reference/Reference.html

关于iphone - 在 iBooks 中打开 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14613007/

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