Files
SideStore/SideStoreApp/Sources/SideStoreUIKit/Components/ForwardingNavigationController.swift

20 lines
440 B
Swift
Raw Normal View History

2019-10-24 13:04:30 -07:00
//
// ForwardingNavigationController.swift
// AltStore
//
// Created by Riley Testut on 10/24/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import UIKit
2023-03-01 00:48:36 -05:00
final class ForwardingNavigationController: UINavigationController {
2019-10-24 13:04:30 -07:00
override var childForStatusBarStyle: UIViewController? {
2023-03-01 00:48:36 -05:00
self.topViewController
2019-10-24 13:04:30 -07:00
}
2023-03-01 00:48:36 -05:00
2019-10-24 13:04:30 -07:00
override var childForStatusBarHidden: UIViewController? {
2023-03-01 00:48:36 -05:00
topViewController
2019-10-24 13:04:30 -07:00
}
}