How to change UIStatusBarStyle in iOS 7 in modal views with navigation bar?

后端 未结 9 2370
孤独总比滥情好
孤独总比滥情好 2020-12-31 11:32

The iOS 7 Transition Guide give a good hint how to change the UIStatusBarStyle dynamically in a UIViewController using

- (UIStatus         


        
9条回答
  •  隐瞒了意图╮
    2020-12-31 11:54

    This works for me:

    1. Set View controller-based status bar appearance to NO
    2. Set Status bar style to UIStatusBarStyleLightContent (just copy that value)
    3. In appDelegate use [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

    Hope it helps (ref: ios7 status bar changing back to black on modal views?)

提交回复
热议问题