简体   繁体   中英

iOS 8.3 : Why is the navigation bar background color for MFMailComposeViewController still white?

Seems for iOS 8.3 the navigation bar background color for MFMailComposeViewController is white no matter what I do. How do I change the background color properly? Here is the code I am using. Simple and straight forward.

    MFMailComposeViewController* myMailViewController = [[MFMailComposeViewController alloc] init];
    myMailViewController.mailComposeDelegate = self;
    [myMailViewController.navigationBar setBackgroundColor:[UIColor orangeColor]];
    [self presentViewController:myMailViewController animated:YES completion:nil];

I tried many other alternatives such as changing the tint of the navigation bar, but I am getting the same result. Is this a bug? Any suggestions or tips is appreciated.

[UINavigationBar appearance].barTintColor = [UIColor yourColor];

应该在MFMailComposer实例化之前调用它。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM