UIStatusBarStyle not working in Swift

前端 未结 11 588
轻奢々
轻奢々 2020-12-22 18:30

I\'m trying to change the Status Bar color in my Swift app to white, but am hitting a brick wall. I have 3 ViewControllers that are each embedded in a NavigationController (

11条回答
  •  Happy的楠姐
    2020-12-22 19:32

    Swift 3.0

    in AppDelegate.swift didFinishLaunchingWithOptions

    UIApplication.shared.statusBarStyle = .lightContent
    

    Info.plist

    View controller-based status bar appearance -> NO
    

    Swift 2.2

    in AppDelegate.swift didFinishLaunchingWithOptions

    UIApplication.sharedApplication().statusBarStyle = .LightContent
    

    Info.plist

    View controller-based status bar appearance -> NO
    

提交回复
热议问题