소스 검색

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
+    }
 }