Files
SideStore/SideStoreApp/Sources/SideStoreUIKit/Extensions/UIApplication+AppExtension.swift

17 lines
445 B
Swift
Raw Normal View History

//
// UIApplication+AppExtension.swift
// DeltaCore
//
// Created by Riley Testut on 6/14/18.
// Copyright © 2018 Riley Testut. All rights reserved.
//
import UIKit
2023-03-01 00:48:36 -05:00
public extension UIApplication {
// Cannot normally use UIApplication.shared from extensions, so we get around this by calling value(forKey:).
class var alt_shared: UIApplication? {
2023-03-01 00:48:36 -05:00
UIApplication.value(forKey: "sharedApplication") as? UIApplication
}
}