Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我继承了 UITableViewController,我希望状态栏要么隐藏,要么设为白色,以便我可以看到它,因为它在那个 tableview 中是黑色背景。
看起来像
仅此控制器为白色,或完全隐藏。
在你的实现这个方法ViewController
ViewController
-(BOOL)prefersStatusBarHidden { return YES; }
并在你想要的地方调用这个方法ViewController。
[self prefersStatusBarHidden];