UISearchBar changes the color of the status bar to white

I have a UISearchBar and for some odd reason, whenever the search bar is displayed on the color of the status bar, it changes from black to white. I do not want the color of the status bar to change. Any ideas? Thank.

+4
source share
2 answers

The accepted answer here indicates that it UISearchBarsends a call to its β€œparent” UINavigationControllerwhen it starts editing.

Therefore, you have 2 options:

  • You can simply override tintColorfor UINavigationControllerfor you UITableViewControlleror

  • UINavigationController, -preferredStatusBarStyle, .

, # 1 , , /.

+8

:

self.definesPresentationContext = YES;

:

- (UIStatusBarStyle)preferredStatusBarStyle {
    return UIStatusBarStyleDarkContent;
}
0

Source: https://habr.com/ru/post/1570334/


All Articles