を使用している場合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
ステータスバーの色をまったく変更できませんでした。何か案は?