Answer by Ankit Kumar Gupta for Change color of...
Swift version to @dvdfrddsgn implementationTry this : (You need to implement UIDocumentInteractionControllerDelegate)func documentInteractionControllerViewControllerForPreview(_ controller:...
View ArticleAnswer by neha for Change color of UIDocumentInteractionController nav bar
Try this code:- (void)openEC:(NSURL*)url { [UINavigationBar appearance].tintColor = [UIColor blueColor]; docController = [UIDocumentInteractionController interactionControllerWithURL:url];...
View ArticleAnswer by Ru Cindrea for Change color of UIDocumentInteractionController nav bar
If you're not using a navigationController, you can set the navigation bar color in the UIDocumentInteractionController by setting the correct settings on the View of the UIViewController where you...
View ArticleAnswer by davidford.me for Change color of UIDocumentInteractionController...
A cleaner version of @DOOManics implementation:- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller{ return [self...
View ArticleAnswer by Mahendra Liya for Change color of UIDocumentInteractionController...
[[UINavigationBar appearance] setTintColor:[UIColor colorWithRed:107.0/256.0 green:145.0/256.0 blue:35.0/256.0 alpha:1.0]];Place this code in Appdelegate's didFinisLaunching method. It will change the...
View ArticleAnswer by DOOManiac for Change color of UIDocumentInteractionController nav bar
If you put the UIDocumentInteractionController onto a UINavigationController it will automatically take the color its navbar. This is probably your root view navcontroller.You do this with the...
View ArticleChange color of UIDocumentInteractionController nav bar
Is there a way to change the tint/background color of UIDocumentInteractionControllernavigationbar?
View Article