co-maps/iphone/Maps/Classes/Components/MWMMailViewController.m

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
396 B
Mathematica
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import "MWMMailViewController.h"
@implementation MWMMailViewController
- (void)viewDidLoad
{
[super viewDidLoad];
self.navigationBar.tintColor = UIColor.whiteColor;
self.navigationBar.barTintColor = UIColor.primary;
}
- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}
- (UIViewController *)childViewControllerForStatusBarStyle { return nil; }
@end