This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MARK: UIViewController | |
extension UIViewController { | |
static var topMost: UIViewController? { | |
var top = UIApplication.shared.keyWindow?.rootViewController | |
while true { | |
if let presented = top?.presentedViewController { | |
top = presented | |
} else if let nav = top as? UINavigationController { | |
top = nav.visibleViewController | |
} else if let tab = top as? UITabBarController { |