假设我在 UINavigationController 中的堆栈上有 2 个 UIViewController。在“父”中我们调用“[self.navigationController pushViewController:childViewController animated:YES];” 在某些用户操作和“孩子”中,我们调用“[self.navigationController popViewControllerAnimated:YES];” 根据一些用户操作。
我们如何才能在父母内部认识到我们刚刚回来?
是否有一些“事件”驱动的方法可以识别出这个 popViewControllerAnimated 动作是从孩子那里调用的?