iOS设置状态栏背景颜色

参考:http://stackoverflow.com/questions/19063365/how-to-change-the-status-bar-background-color-and-text-color-on-ios-7
Objective C

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

Swift

func setStatusBarBackgroundColor(color: UIColor) { 
guard let statusBar = UIApplication.sharedApplication().valueForKey("statusBarWindow")?.valueForKey("statusBar") as? UIView 
else { return
 } 
statusBar.backgroundColor = color
}

你可能感兴趣的:(iOS设置状态栏背景颜色)