MFMailComposeViewController のナビゲーション バーに問題があります。
plistファイルで「ステータスバースタイル」を「UIStatusBarStyleLightContent」に設定したアプリがあります。MFMailComposeViewController を呼び出す場合を除いて、すべてのビューで完全に機能します。黒に戻ります。残りは大丈夫です。持ち越すカスタム イメージがあり、ティント カラーを問題なく設定できます。誰でもこれを修正する方法を知っていますか? メールで「ステータスバーのスタイル」を「UIStatusBarStyleLightContent」にリセットするには?
AppDelegate で
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"headerLogo.png"] forBarMetrics:UIBarMetricsDefault];
通話メール
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
mailController.mailComposeDelegate = self;
[[mailController navigationBar] setTintColor:[UIColor whiteColor]];
[[mailController navigationBar] setBarTintColor:[UIColor whiteColor]];
[self presentViewController:mailController animated:YES completion:nil];