IOS7 Status bar change to black after search is ac

2020-02-28 00:45发布

问题:

I'm using UISearchBar as header of UITableView. UISearchBar style is UISearchBarStyleMinimal. And when search is active, status bar change to black. How to fix that?

Before search is active

Search is active

回答1:

you just need to do this:

self.navigationController.view.backgroundColor = [UIColor lightGrayColor];