0

Is there any way to disable copy of content when we are viewing a text file, in QLPreviewController?

I tried to sub-class it and override- canBecomeFirstResponder and returned NO, but it did not work :-(

Please suggest.

Devarshi
  • 16,440
  • 13
  • 72
  • 125

1 Answers1

0

Yes, with viewDidAppear you can simply set:

[self.navigationItem setRightBarButtonItem:nil];

And it will just remove the button for exporting from the previewer for you

valheru
  • 2,552
  • 3
  • 20
  • 40