This guide demonstrates how to make a `UIView` appear as if it is stuck to a page.
It is convenient for the user to make a UIView that is "stuck" to a page record its desired page location. To do this, you could add an extension/category to a UIView, or use a derived class, as shown below:
1class FloatingView: UIView {
2 // the page on which the UIView appears
3
4 var pageNumber: Int32 = 0
5 // the location, expressed in PDF coordinates, at which the view appears
6 var pdfPageRect: PTPDFRect?
7}
1@interface FloatingView : UIView
2// the page on which the UIView appears
3@property (assign, nonatomic) int pageNumber;
4// the location, expressed in PDF coordinates, at which the view appears
Without the last line in the code snippet above, the new view would not appear in the correct location. The following method will position it, and any others that have been added:
1func positionFloatingViews() {
2 for case let overlayView as FloatingView in self.pdfViewCtrl.overlayView.subviews {
3 // make sure this is a floating view
4 if type(of: overlayView) === FloatingView.self {
5 var pageHidden = false
6 if !pdfViewCtrl.pagePresentationModeIsContinuous() {
A red `UIView` positioned near the bottom left hand corner of the first page.
Whenever the PDF page shifts within the PTPDFViewCtrl, which may happen when changing the page presentation mode, zooming, and such, the views need to be re-positioned (positionFloatingViews needs to run again). To do this, implement the PTPDFViewCtrl delegate methods pdfScrollViewDidEndZooming: and onLayoutChanged, and in them, call positionFloatingViews: