mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
18 lines
452 B
Swift
18 lines
452 B
Swift
|
|
//
|
||
|
|
// UIApplication+AppExtension.swift
|
||
|
|
// DeltaCore
|
||
|
|
//
|
||
|
|
// Created by Riley Testut on 6/14/18.
|
||
|
|
// Copyright © 2018 Riley Testut. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
public extension UIApplication
|
||
|
|
{
|
||
|
|
// Cannot normally use UIApplication.shared from extensions, so we get around this by calling value(forKey:).
|
||
|
|
class var alt_shared: UIApplication? {
|
||
|
|
return UIApplication.value(forKey: "sharedApplication") as? UIApplication
|
||
|
|
}
|
||
|
|
}
|