サーチ…
一番上のUIViewControllerを取得する
一番上のUIViewController
を取得する一般的な方法は、アクティブなUIWindow
を取得することUIWindow
。私はこのための拡張を書いた:
extension UIApplication {
func topViewController(_ base: UIViewController? = UIApplication.shared.keyWindow?.rootViewController) -> UIViewController {
if let nav = base as? UINavigationController {
return topViewController(nav.visibleViewController)
}
if let tab = base as? UITabBarController {
if let selected = tab.selectedViewController {
return topViewController(selected)
}
}
if let presented = base?.presentedViewController {
return topViewController(presented)
}
return base!
}
インターセプトシステムのイベント
非常に強力なiOSの通知センターを使用すると、特定のアプリケーション全体のイベントをインターセプトできます。
NotificationCenter.default.addObserver(
self,
selector: #selector(ViewController.do(_:)),
name: NSNotification.Name.UIApplicationDidBecomeActive,
object: nil)
もっと多くのイベントに登録することができます。https://developer.apple.com/reference/foundation/nsnotification.nameをご覧ください 。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow