I am using PSPDFKit and Xamarin iOS. I would like to have the annotation toolbar automatically show when the ViewController that subclasses PSPDFViewController is shown.
Currently I have:
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
AnnotationButtonItem.FlexibleAnnotationToolbar.ShowToolbar (true, new PSPDFFlexibleToolbarFinishedHandler (((bool finished) => {
})));
}
Unfortunately nothing is happening. Anyone have experience getting the toolbar to automatically show?