Q: what we would like to do is catch the tap events on the pdfviewctrl object. i don’t see that in the PDFNetiOS the events like:
handleTap or handleLongPress are being exposed in the binding. so if i overwrite the tool class like in the rest of the tools. i cannot overwrite this methods since they are not exposed.
can someone help me on this one.
A: If you just want to handle tap events, you can simply do:
mPdfViewCtrl.PdfScrollViewTap += (object sender, EventArgs e) => {
// do something
};
You will not need to customize the Tools in Obj-C.