OStack程序员社区-中国程序员成长平台

标题: ios - FoxitIOSRDK : not able to click on Hyperlink [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:03
标题: ios - FoxitIOSRDK : not able to click on Hyperlink

我正在使用 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 actionselector(showSearchBar)
       forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:searchButton];

我该如何解决这个问题?



Best Answer-推荐答案


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

将UI扩展添加到您的项目并对其进行初始化后,该链接将起作用。

相关代码在这里:

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

UIExtensionsManager* extensionsManager;

...

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

pdfViewCtrl.extensionsManager = extensionsManager;"

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

(void)onDocOpenedFSPDFDoc*)document errorint)error
{
    [_pdfViewCtrl gotoPage:2 animated:false];
}

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






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4