我正在使用" UIPrintInteractionController"用于打印一些文件。出于安全原因,不应启用其他共享选项。
但是我在缩放" UIPrintInteractionController"中的内容后获得了一个共享选项。这在下面的第二个屏幕截图中显示。
Screenshot1
Screenshot2
如何删除红色框中显示的共享按钮?请帮帮我。
在此先感谢.... :)
答案 0 :(得分:-1)
从UIPrintInteractionController的文档中,似乎无法隐藏共享按钮。作为一个黑客,你可以试试这个。它适用于QLPreviewController。
override func viewDidLayoutSubviews() {
navigationItem.rightBarButtonItems?[0] = UIBarButtonItem()
}
请参阅此:: How to hide share button in QLPreviewController using swift?