Some test text!
iOS / Guides / Annotation list
The PTAnnotationViewController
class shows a list of all annotations in a document being viewed by a PTPDFViewCtrl
. The list contains any comments that have been added to the annotations.
The annotations list control is part of the Tools library, so make sure you have added the Tools library to your project .
To create a new annotation view controller instance and display it from another view controller, supply a PTPDFViewCtrl
instance to the PTAnnotationViewController
designated initializer:
// Initialize annotation view controller with a PTPDFViewCtrl instance.
let annotationViewController = PTAnnotationViewController(pdfViewCtrl: pdfViewCtrl)
// Set the current view controller as the annotation view controller's delegate.
annotationViewController.delegate = self
let navigationController = UINavigationController(rootViewController: annotationViewController)
if ( UIDevice.current.userInterfaceIdiom == .pad ) {
navigationController.modalPresentationStyle = .popover
navigationController.popoverPresentationController?.barButtonItem = annotationListButton
}
self.present(navigationController, animated: true, completion: nil)
PTAnnotationViewController
's
UIPopoverPresentationController
with either:
sourceRect
AND sourceView
You can set a delegate to be notified by the annotation view controller when annotations are selected with the PTAnnotationViewControllerDelegate
protocol. (See the CompleteReader sample for usage of the PTAnnotationViewController
.)
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales