1. 程式人生 > >iOS設定狀態列背景色

iOS設定狀態列背景色

iOS開發之 設定狀態列的背景色

//設定狀態列背景顏色
- (void)setStatusBarBackgroundColor:(UIColor *)color {

    UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
    if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {
        statusBar.backgroundColor
= color; } }