gpt4 book ai didi

ios - 福昕IOSRDK : not able to click on Hyperlink

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

我正在使用 FoxitRDK 框架在我的应用程序中打开 pdf 文档。在演示中,除一件事外一切正常:我无法单击超链接。我已经查看了 SDK 文档和框架内的类,但无法找到解决方案。

文档链接如下:

http://www.foxitsdk.com/docs/mobile-pdf-sdk/developer_guide_ios.pdf

这是我的代码

NSString* pdfPath = [[NSBundle mainBundle] pathForResource:@"getting_started_ios1" ofType:@"pdf"];
// Initialize a PDFDoc object with the path to the PDF file
FSPDFDoc* pdfdoc = [FSPDFDoc createFromFilePath:pdfPath];

// Initialize a FSPDFViewCtrl object with the size of the entire screen

pdfViewCtrl = [[FSPDFViewCtrl alloc] initWithFrame: CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height-60)];

[pdfViewCtrl registerDocEventListener:self];
[pdfViewCtrl registerPageEventListener:self];
[pdfViewCtrl registerGestureEventListener:self];


// Set the document to display
[pdfViewCtrl setDoc:pdfdoc];
// Add the pdfViewCtrl to the root view
[self.view addSubview:pdfViewCtrl];
extensionsManager= [[UIExtensionsManager alloc]initWithPDFViewControl:pdfViewCtrl];
pdfViewCtrl.extensionsManager = extensionsManager;

[extensionsManager registerAnnotEventListener:self];
[extensionsManager registerAnnotHandler:self];


//Search button

searchButton = [[UIButton alloc] initWithFrame:CGRectMake(280, 80, 80, 40)];
[searchButton setBackgroundColor:[UIColor grayColor]];
[searchButton setTitle: @"Search" forState: UIControlStateNormal];
[searchButton addTarget:self action:@selector(showSearchBar)
forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:searchButton];

我该如何解决这个问题?

最佳答案

您需要将 UI 扩展组件添加到您的应用中。可以引用开发者指南“2.4.5 添加对文本搜索、书签和注释的支持”部分的步骤。

将 UI 扩展添加到您的项目并初始化它后,链接将可用。

相关代码在这里:

"#import "../uiextensions/UIExtensionsManager.h"

UIExtensionsManager* extensionsManager;

...

extensionsManager = [[UIExtensionsManager alloc] initWithPDFViewControl:pdfViewCtrl];

pdfViewCtrl.extensionsManager = extensionsManager;"

如果你想在文档打开时转到特殊页面,你需要在 onDocOpened 事件中进行。

(void)onDocOpened:(FSPDFDoc*)document error:(int)error
{
[_pdfViewCtrl gotoPage:2 animated:false];
}

关于ios - 福昕IOSRDK : not able to click on Hyperlink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41054523/

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