PDFTron mac实现

时间:2017-10-13 13:28:56

标签: objective-c macos pdftron

我正致力于实现显示和编辑pdfs的iOS和mac应用程序。

  • 使用下面提供的代码完成iOS版本的实现。
  • 问题是mac版本,它不包含显示和编辑pdf所需的PTPDFViewCtrl和ToolManager类。
  

有没有经验使用等效类进行mac实现或建议使用mac实现?

#pragma mark - PDFKit
-(void)initialConfig {

#warning MISSING PDFTRon license key
  // initialize PDFNet
  [PTPDFNet Initialize:@""];

  PTPDFViewCtrl *ctrl = [PTPDFViewCtrl new];
  CGFloat offset = 20;
  ctrl.frame = CGRectMake(0, offset, self.view.frame.size.width, self.view.frame.size.height - offset);
  [ctrl SetBackgroundColor:0 g:0 b:0 a:0];
  [ctrl SetHighlightFields:YES];
self.view.backgroundColor = [UIColor lightGrayColor];
  [self.view addSubview:ctrl];

  // open the PDF document included in the bundle in the PTPDFViewCtrl
  PTPDFDoc *doc = [[PTPDFDoc alloc]initWithFilepath:self.viewModel.getFilePath];
  [ctrl SetDoc:doc];
  self.viewModel.doc = doc;

  [ctrl setAutoresizingMask:UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];

  // add the toolmanager (used to implement text selection, annotation editing, etc.
  ToolManager *toolManager = [[ToolManager alloc] initWithPDFViewCtrl:ctrl];
  [toolManager changeTool:[PanTool self]];
  ctrl.toolDelegate = toolManager;
}

非常感谢您的帮助。 马蒂

1 个答案:

答案 0 :(得分:1)

出于演示目的,我们的PDFNetCMac C / C ++下载中包含一个Java SWING示例项目,但不保留也不支持此示例。它使用PDFView类,并展示了一些集成的基础知识。例如,该示例不支持注释。

同样,有一个C ++ Windows MFC示例,一些客户已将其用作与Qt等跨平台框架集成的指南。

另一种选择是使用PDF WebViewer,它需要将用户界面移动到本机macOS应用程序中的浏览器元素中,但WebViewer包含完整的查看体验,包括表单填写和注释。