Created
November 18, 2013 21:10
-
-
Save setoh2000/7535335 to your computer and use it in GitHub Desktop.
iOS7でステータスバーの文字色を白にしてもカメラロールとかにアクセスすると黒に戻ってしまうのを防ぐ方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated | |
{ | |
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ステータスバーの文字色を白にする方法はググればいっぱい出てくるので各自で調べてください。