Product: Apryse Mobile SDK iOS
Product Version: 10.3.0
Please give a brief summary of your issue:
Hi everyone!
I’m using a PTPDFViewCtrl
object inside a class that inherits from UIView
and a PTPDFDoc
object to load and show a PDF document on screen. Also I’m using a PTToolManager
object as Tool Manager:
mPdfView = PTPDFViewCtrl(frame: self.bounds)
mToolManager = PTToolManager(pdfViewCtrl: mPdfView!)
mPdfView!.toolDelegate = mToolManager
mPdfView!.isUserInteractionEnabled = true
...
addSubview(mPdfView!)
mPdfDoc = PTPDFDoc(filepath: mDocumentPath)
...
mPdfView!.setDoc(mPdfDoc!)
When the user touches a certain app button, an annotation (PTSquare
) is created on the current page, and what I need is to disable navigation between pages from the moment the user creates the annotation until he confirms or dismisses it by touching the corresponding button of the app. I’ve implemented PTPDFViewCtrlDelegate
and PTToolManagerDelegate
in my class.
How can I achieve it?
Thank you all for taking the time to read my post and offer your assistance!
Kind regards,
Javier Bonilla.