・iOSのステータスバーの種類は2つしかありません。
UIStatusBarStyleLightContent :white
UIStatusBarStyleDefault :black
-
Info.plistに以下のKey追加
-Key : View controller-based status bar appearance
-Type : Boolean
-Value: NO -
各ViewControllerのviewDidLoadに以下を追加
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;