فهرست منبع

AppearanceManager: Propagate childForStatusBarStyle

In the case of VLCMovieViewController, we need to propagate it in order
to always set the preferred status bar style to .lightContent
Soomin Lee 6 سال پیش
والد
کامیت
ac159ad054
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      Sources/AppearanceManager.swift

+ 4 - 0
Sources/AppearanceManager.swift

@@ -49,4 +49,8 @@ extension UINavigationController {
     override open var preferredStatusBarStyle: UIStatusBarStyle {
         return PresentationTheme.current.colors.statusBarStyle
     }
+
+    override open var childForStatusBarStyle: UIViewController? {
+        return self.topViewController
+    }
 }