IOS7 Status bar change to black after search is active

随声附和 提交于 2019-12-18 14:56:04

问题


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];


来源:https://stackoverflow.com/questions/19129540/ios7-status-bar-change-to-black-after-search-is-active

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!