MyVC *vc = [[MyVC alloc] init];
vc.delegate = self;
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
[nc.navigationBar setTintColor:[UIColor redColor]];
[self presentViewController:nc animated:true completion:^{}];
导航栏是黑色的。我从在我的 App Delegate 中创建的选项卡栏控制器内的导航控制器呈现此内容。在我的 ApplicationDidFinishLaunchingWithOptions 中,我可以在那里控制导航控制器的颜色。
为什么这个导航控制器色调条是黑色的?