Is there a way to change the tint/background color of UIDocumentInteractionController navigationbar?
Is there a way to change the tint/background color of UIDocumentInteractionController navigationbar?
Swift version to @dvdfrddsgn implementation
Try this : (You need to implement UIDocumentInteractionControllerDelegate)
func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController {
return self.navigationController ?? self
}