forked from zelo72/mastodon-ios
15 lines
253 B
Swift
15 lines
253 B
Swift
|
//
|
||
|
// UITabBarController.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-3-31.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
extension UITabBarController {
|
||
|
open override var childForStatusBarStyle: UIViewController? {
|
||
|
return selectedViewController
|
||
|
}
|
||
|
}
|