設置狀態欄的背景顏色
- (void)setStatusBarBackgroundColor:(UIColor *)color { UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"]; if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) { statusBar.backgroundColor = color; } }
以上這篇iOS 設置狀態欄的背景顏色方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持本站。