获取状态栏的当前颜色

Get the current color of the status bar

是否可以在iOS中获取当前状态栏的颜色?我知道我们可以更改颜色,但是否可以通过编程方式获取状态栏的当前状态?例如,无论是 UIStatusBarStyleLightContent 还是 UIStatusBarStyleDefault

你可以这样获取:

UIStatusBarStyle currentStyle = [UIApplication sharedAppplication].statusBarStyle;