Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dark statusbar in TabBar controller?

I'm having this odd issue, where my status bar gets all black, only when I'm using a tab bar controller. Is there a way to fix this? I obviously want it the same color as the navigation bar.

enter image description here

Here's a screenshot of the navigation and tab bar controller in my storyboard.

enter image description here

like image 660
Recusiwe Avatar asked Sep 02 '25 06:09

Recusiwe


2 Answers

  1. You can change the info.plist the row View controller-based status bar appearance and set it to NO
  2. Then put this line of code in your appDelegate.swift in didFinishLaunchingWithOptions

    UIApplication.shared.statusBarStyle = .lightContent

like image 165
Md Rashed Pervez Avatar answered Sep 04 '25 22:09

Md Rashed Pervez


This problem seems to be the navigation bar not covering the background of the status bar. You should embed your view controller in navigation controller instead of adding navigation bar directly.

like image 34
Qi Hao Avatar answered Sep 04 '25 22:09

Qi Hao