Change the status bar background color color past iOS 7

前端 未结 8 1362
既然无缘
既然无缘 2020-12-30 04:02

I want to change background color of status bar on iOS 7, and I\'m using this code:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOp         


        
8条回答
  •  渐次进展
    2020-12-30 04:47

    in AppDelegate use

        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
    

    and in project info.plist file

    set flag NO to View controller-based status bar appearance in app.

提交回复
热议问题