不支持黑暗模式
在info.plist 里面添加 Appearance 为 String 的值 Light
<key>UIUserInterfaceStyle</key>
<string>Light</string>
让页面VC 的每个页面 基于 preferredStatusBarStyle 展示
在info.plist 里面添加 View controller-based status bar appearance 为 Boolean 的值 YES
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
UINavigationController需要自定义子类并添加如下方法:
- (UIStatusBarStyle)preferredStatusBarStyle {
UIViewController *topVC = self.topViewController;
return [topVC preferredStatusBarStyle];
}
网友评论