检测视图控制器何时从弹出窗口出现

问题描述 投票:3回答:1

我正在导航堆栈的深处弹出一个视图控制器。是否可以检测视图控制器是从推送还是弹出显示?

nav stack:

[A] -> [B] -> [C] -> [D] -> [E]

[H]弹出[B]

nav stack:

[A]  -> [B] // Possible to detect if B appears from a pop?
ios cocoa-touch uiviewcontroller uinavigationcontroller
1个回答
8
投票

在视图控制器B中,实现viewWillAppearviewDidAppear。在那里,使用isMovingToParentisBeingPresented来查看它出现在什么条件下:

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    if !isBeingPresented && !isMovingToParent {
        // this view controller is becoming visible because something that was covering it has been dismissed or popped
    }
}

以下是人们可能会发现的这些属性的更一般用法:

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    if isMovingToParent {
        // this view controller is becoming visible because it was just push onto a navigation controller or some other container view controller
    } else if isBeingPresented {
        // this view controller is becoming visible because it is being presented from another view controller
    } else if view.window == nil {
        // this view controller is becoming visible for the first time as the window's root view controller
    } else {
        // this view controller is becoming visible because something that was covering it has been dismissed or popped
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.