This tutorial only applies to Xamarin.iOS. See Xamarin.Android equivalent here .
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:
1public class FloatingView : UIView
2{
3 public FloatingView() : base()
4 {
5
6 }
7
8 public int PageNumber { get; set; }
9
10 public pdftron.PDF.Rect PdfPageRect { get; set; }
11}
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:
1void positionFloatingViews()
2{
3 foreach (UIView view in mPdfViewCtrl.OverlayView.Subviews)
4 {
5 if (view is FloatingView)
6 {
7 var overlayView = view as FloatingView;
8 bool pageHidden = false;
9 if (!mPdfViewCtrl.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: