UINavigationBar Appearance on Modal Not Setting

爷,独闯天下 提交于 2019-12-01 03:23:37

Like you, I've been trying to alter the appearance of UIActivityViewController and it's "sub" controllers. It seems that in iOS7 the appearance API is somewhat buggy. UIActivityViewController is probably a different process and for sure a separate window, so I'm not really surprised that it's troublesome to style it.

Anyway I found an interesting way around this issue, but your designers might not like it. Create a subclass of UIWindow (ex: MyWindow), instantiate it as your main window and every time you use appearance API use it like this:

[UINavigationBar appearanceWhenContainedIn:[MyWindow class], nil].barTintColor = [UIColor redColor];

This way you'll only style views that actually belong to your application and the Apple-provided views will remain white/blue. I guess it's not the solution you were looking for, but on the other hand it gives users a good understanding what is your app and what is system-provided ;)

In iOS 8 the UIActivityViewController presents its individual compose controllers on the root view controller of your application.

You need to subclass your root view controller (whether it be a UIViewController or UINavigationController) and add the following code.

@interface UINavigationControllerBarColor : UINavigationController

@end

@implementation UINavigationControllerBarColor

- (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion {
    [super presentViewController:viewControllerToPresent animated:flag completion:^{
        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
        if (completion) {
            completion();
        }
    }];
}

@end

and then instead of initializing a UINavigationController in the AppDelegate or storyboard, initialize your newly subclassed controller.

Some other recommendations subclass the UIActivityViewController but this does not work.

If you want to change the bar button and title colors as well use the following in your application:didFinishLaunching:

[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                      [UIColor whiteColor], UITextAttributeTextColor,
                                                      [UIFont systemFontOfSize:18.0f], UITextAttributeFont,
                                                      nil]];
[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTintColor:[UIColor whiteColor]];

I've been struggling with this same issue for hours and my conclusion is that all activities from the UIActivityViewController may have their own style implementation and will look depending on that.

Basic problem: You can customise something to look ok for mail and messages, but other apps may look wrong. i.e: Facebook Messanger for some reason forces status bar to be light.

My recommendation: Create a subclass of UIWindow, use that subclass within your application and target UIAppearance to that window class and let the system's interfaces to just be :), (or with minor changes like tint color).

@interface MyWindow : UIWindow

@end

// further in code
[[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[MyWindow class]]] setTintColor:[UIColor orangeColor]];

FYI: We have literally no control over status bar when using UIActivityViewController

Hope this helps.

Since there is no solution until now, I did the following to set the color of navigation bar of UIActivityViewController modal to white (as my app's navigation bar color is blue) so that the users can at least see the buttons:

[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

When the user is done with the UIActivityViewController modal, the app's main navigation bar color is returned to blue.

Hopefully somebody will post a better solution.

Alex

I found a solution to change the text color of the Send and Cancel buttons.

Check my answer from here.

Try this:

[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

I have the same problem and I used ActivityViewController's completion handler delegate to set back my bar Tint color to white with this line :

shareViewController.completionWithItemsHandler = ^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) {
            [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
        };

However this doesn't work anymore on iOS 8... They changed little bit the completion handler format, the code got executed but the color didn't change.

So in order not to waste all of my time here is my quick fix :

I am still changing the global color with this line just before showing the sharing controller (with comment for maintenance)

[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor darkGrayColor]}]; // Note : In ViewWillAppear the color is set back to white

In each view controller that are calling a UIActivityViewController, I am setting in the viewWillAppear method the code to get the color back.

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
}

This works good although it produce lack of cohesion in the code.

vahotm

I used walapu's answer to make my own solution. The point is, that I set up navigation bar tint color also in presentViewController:animated:completion: and not using appearance proxy, but directly for MFMailComposeViewController.

- (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)animated completion:(void (^)(void))completion
{
    if ([viewControllerToPresent isKindOfClass:[MFMailComposeViewController class]]) {
        [((MFMailComposeViewController *)viewControllerToPresent).navigationBar setTintColor:[UIColor whiteColor]];
    }

    [super presentViewController:viewControllerToPresent animated:animated completion:^{
        if ([viewControllerToPresent isKindOfClass:[MFMailComposeViewController class]]) {
            [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
        }
        if (completion) {
            completion();
        }
    }];
}

I had a problem in particular with iMessage. Had to set navbar background image, setting the tint didn't work. Used slicing to stretch a 2x2 pixel image with my color.

[UINavigationBar.appearance setBackgroundImage:[UIImage imageNamed:@"red"] 
                                 forBarMetrics:UIBarMetricsDefault];

Here I change the nav bar's global appearance immediately before presenting the activity view, and change it back once the activity view is dismissed. (Tested on iOS 12, Swift 5)

let activityVC = UIActivityViewController...

// Temporarily change the nav bar button's tint color.
let originalColor = UINavigationBar.appearance().tintColor
activityVC.completionWithItemsHandler = { type, completed, items, error in
    UINavigationBar.appearance().tintColor = originalColor
}
UINavigationBar.appearance().tintColor = UIColor.blue

present(activityVC, ...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!