IOS7 Status bar change to black after search is active

后端 未结 1 1992
一向
一向 2021-01-01 21:26

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?

<
相关标签:
1条回答
  • 2021-01-01 22:08

    you just need to do this:

    self.navigationController.view.backgroundColor = [UIColor lightGrayColor];
    
    0 讨论(0)
提交回复
热议问题