|
|
@ -6,12 +6,25 @@ import Foundation
|
|
|
|
|
|
|
|
|
|
|
|
extension UIApplication {
|
|
|
|
extension UIApplication {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var frontmostViewControllerIgnoringAlerts: UIViewController? {
|
|
|
|
|
|
|
|
return findFrontmostViewController(ignoringAlerts:true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var frontmostViewController: UIViewController? {
|
|
|
|
var frontmostViewController: UIViewController? {
|
|
|
|
|
|
|
|
return findFrontmostViewController(ignoringAlerts:false)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
internal func findFrontmostViewController(ignoringAlerts: Bool) -> UIViewController? {
|
|
|
|
let window = UIApplication.shared.keyWindow
|
|
|
|
let window = UIApplication.shared.keyWindow
|
|
|
|
var viewController = window!.rootViewController
|
|
|
|
var viewController = window!.rootViewController
|
|
|
|
|
|
|
|
|
|
|
|
while true {
|
|
|
|
while true {
|
|
|
|
if let nextViewController = viewController?.presentedViewController {
|
|
|
|
if let nextViewController = viewController?.presentedViewController {
|
|
|
|
|
|
|
|
if ignoringAlerts {
|
|
|
|
|
|
|
|
if nextViewController as? UIAlertController != nil {
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
viewController = nextViewController
|
|
|
|
viewController = nextViewController
|
|
|
|
} else if let navigationController = viewController as? UINavigationController {
|
|
|
|
} else if let navigationController = viewController as? UINavigationController {
|
|
|
|
if let nextViewController = navigationController.topViewController {
|
|
|
|
if let nextViewController = navigationController.topViewController {
|
|
|
|