を使用している場合UIActivityViewController、ユーザーがアクティビティ (メールやメッセージなど) を選択した後、ステータス バーのテキストの色も、[キャンセル] および [送信] ナビゲーション バー ボタンのテキスト/濃淡の色も変更できません。バーボタンについては、AppDelegate次を使用してみました:
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
そして、何も起こりません。ただし、これでナビゲーションバーのタイトルを設定できます:
[[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil]];
に を設定UIViewControllerBasedStatusBarAppearanceしNOましたInfo.plist。そして、次の行を入れます:
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
で、AppDelegateステータスバーの色をまったく変更できませんでした。何か案は?