UITabBarController.swift 253 B

123456789101112131415
  1. //
  2. // UITabBarController.swift
  3. // Mastodon
  4. //
  5. // Created by MainasuK Cirno on 2021-3-31.
  6. //
  7. import UIKit
  8. extension UITabBarController {
  9. open override var childForStatusBarStyle: UIViewController? {
  10. return selectedViewController
  11. }
  12. }