I need to get doubletap event from PDF but I haven't seen that event (in Android it was). There is a way to obtain this event (we use the last version of the library 3.0.3?)
Another need is to get the position pointed by x,y but from the PDFView we haven't a public way to get it.
We implemented a new function inside the PDFView.
//get current position on the screen.
-(void)vGetPos :(struct PDFV_POS*)pos :(float) x :(float) y
{
[m_view vGetPos:pos

:y];
}
Without inheriting the whole class, can we get the PDFV_POS from x / y? Or can you place that function as public so will be awailable in the future?
Thank you.