在M13PDFKit中将完成按钮作为后退按钮

时间:2016-11-02 13:03:08

标签: swift pdf m13pdfkit

我正在使用M13PDFKit。在此图像中完成按钮,我想将其作为后退按钮。 enter image description here

1 个答案:

答案 0 :(得分:1)

转到 PDFKBasicPDFViewer.m 并按照步骤操作。

第1步:

enter image description here

按钮代码:

  self.backButtonTitle = @"Done";
  [buttonsArray addObject:[[UIBarButtonItem alloc] initWithTitle:self.backButtonTitle style:UIBarButtonItemStylePlain target:self action:@selector(dismissed)]];

第2步:

enter image description here

驳回观点:

   - (void)dismissed
  {
    [self.navigationController popToRootViewControllerAnimated:YES];
  }

<强>输出:

enter image description here