Files
SideStore/SideStoreApp/Sources/SideStoreUIKit/Components/ForwardingNavigationController.swift
Joseph Mattello c4c2d17ffc snapshot
Signed-off-by: Joseph Mattello <mail@joemattiello.com>
2023-04-02 02:28:12 -04:00

20 lines
440 B
Swift

//
// ForwardingNavigationController.swift
// AltStore
//
// Created by Riley Testut on 10/24/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import UIKit
final class ForwardingNavigationController: UINavigationController {
override var childForStatusBarStyle: UIViewController? {
self.topViewController
}
override var childForStatusBarHidden: UIViewController? {
topViewController
}
}