Change color of UIDocumentInteractionController nav bar

Yogesh Agarwal picture Yogesh Agarwal · Jul 28, 2011 · Viewed 7.6k times · Source

Is there a way to change the tint/background color of UIDocumentInteractionController navigationbar?

Answer

frddsgn picture frddsgn · Oct 24, 2013

A cleaner version of @DOOManics implementation:

- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller
{
    return [self navigationController];
}