I've created a modal QLPreviewController with view of a PDF doc:
[self presentModalViewController:preview animated:YES];
However it's missing a UIToolbar at the base of the controller's view. I had thought of supplying the toolbar myself; but I would have to wait till the PDF is loaded before adding to the base within the controller's view. There must be a simpler/standard way to provide a toolbar.
Is there a simple way to supply a toolbar that I can use to navigate from this modal QLPreviewController?