Skip to content

Instantly share code, notes, and snippets.

@setoh2000
Created November 18, 2013 21:10
Show Gist options
  • Save setoh2000/7535335 to your computer and use it in GitHub Desktop.
Save setoh2000/7535335 to your computer and use it in GitHub Desktop.
iOS7でステータスバーの文字色を白にしてもカメラロールとかにアクセスすると黒に戻ってしまうのを防ぐ方法
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
}
@setoh2000
Copy link
Author

ステータスバーの文字色を白にする方法はググればいっぱい出てくるので各自で調べてください。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment