Change color of UIDocumentInteractionController nav bar
问题 Is there a way to change the tint/background color of UIDocumentInteractionController navigationbar ? 回答1: A cleaner version of @DOOManics implementation: - (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller { return [self navigationController]; } 回答2: If you put the UIDocumentInteractionController onto a UINavigationController it will automatically take the color its navbar. This is probably your root view navcontroller.