Some test text!

Search
Hamburger Icon

iOS / Guides

Open a document

You have a few options to open a document such as with a document view controller, tabbed document view controller or an embedded view.

PTPDFViewCtrl

Displaying a PDF
The easiest way to display a PDF is using a PTDocumentController . The PTPDFViewCtrl is a low-level control that may be used when a higher level of customization is required.

About PTPDFViewCtrl

The PTPDFViewCtrl is a UIView that displays a PDF.

If your app is displaying a PDF, a PTPDFViewCtrl will be used in one of two ways:

  • Directly, by adding it as a subview to another view in your app.
  • As a component piece of a PTDocumentController or PTTabbedDocumentViewController. (It is accessible via the pdfViewCtrl property.)

Use PTPDFViewCtrl as a stand-alone component

  1. These instructions assume that you've initialized Apryse .
  1. Add a PDF to your project, by dragging it into the project's left side panel. Ensure that it will be copied into the bundle's resources by checking that it is listed under the Copy Bundle Resources section of the project's Build Phases. (If it is not present here, add it using the '+' button.)

    Add a pdf to your project

    The file sample.pdf has been added to the project, and will be copied into the bundle.
  1. Instantiate a new PTPDFDoc:

    // Get the path to document in the app bundle.
    NSString* pdfPath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"pdf"];
        
    // Instantiate a new PDFDoc with the path to the file.
    PTPDFDoc* docToOpen = [[PTPDFDoc alloc] initWithFilepath:pdfPath];
  2. Create a new PTPDFViewCtrl and add it as a child to the current view:

    // Create a new PDFViewCtrl
    PTPDFViewCtrl* pdfViewCtrl = [[PTPDFViewCtrl alloc] init];
    
    // Set the document to display
    [pdfViewCtrl SetDoc:docToOpen];
    
    // Add the PDFViewCtrl to the current view controller's root view.
    [self.view addSubview:pdfViewCtrl];
      
    // Set the size of the PDFViewCtrl to that of its superview.
    // (Auto Layout is fully supported as well)
    pdfViewCtrl.frame = self.view.bounds;
    pdfViewCtrl.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

    Running the app will now display the PDF sample.pdf. However, it will not support annotation creation, editing, text selection, or any other UI aspect that is handled by Tools.framework . To add support for annotations and text selection you need to incorporate the tools framework .

Get the answers you need: Chat with us