How to set statusBar color on iPhoneX?

Jerny picture Jerny · Dec 4, 2017 · Viewed 8.1k times · Source

I use the navigationController, and i hide the navigationBar, how to set statusBar color on iPhoneX? I do not want to set self.view.backgroundColor

iPhoneX notch color

enter image description here

Answer

Jerny picture Jerny · May 2, 2018
UIView *statusBar = (UIView *)[[UIApplication sharedApplication] valueForKey:@"statusBar"];
statusBar.backgroundColor = [UIColor greenColor];