Some test text!
iOS / Guides
PTDocumentController
. The PTPDFViewCtrl
is a low-level control that may be used when a higher level of customization is required.
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:
PTDocumentController
or PTTabbedDocumentViewController
. (It is accessible via the pdfViewCtrl
property.)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.)
sample.pdf
has been added to the project, and will be copied into the bundle.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];
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 .
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales