0
votes

I have opened the document (PDF) in QLPreviewController. I want to print that document on clicking right button on the top of the screen. I need code example to print it. I don't want email option over there. thats why I cannot use UIDocumentInteractionController.

1

1 Answers

1
votes

With QLPreviewController, what you see is what you get.

You are either stuck with the share button and all the options it gives (print, email, etc) or you rewrite that button yourself using UIActivityViewController.

In your instance of QLPreviewController, you can overwrite that button in viewDidAppear by doing :

[self.navigationItem setRightBarButtonItem:nil];

Note this just removes the button altogether but you can create your own button and add your own sharing options to it as well. See this for more info.