public interface UINavigationControllerDelegate
| Modifier and Type | Method and Description |
|---|---|
default void |
didShowViewController(UINavigationController navigationController,
UIViewController viewController,
boolean animated)
It is used after the navigation controller displays the view controller's
view.
|
default void |
willShowViewController(UINavigationController navigationController,
UIViewController viewController,
boolean animated)
It is used before navigation controller displays the view controller's
view.
|
default void willShowViewController(UINavigationController navigationController, UIViewController viewController, boolean animated)
navigationController - The navigation controller that corresponds to
this delegate.viewController - The related view controller.animated - Boolean that defines whether the change will be animated.default void didShowViewController(UINavigationController navigationController, UIViewController viewController, boolean animated)
navigationController - The navigation controller that corresponds to
this delegate.viewController - The related view controller.animated - Boolean that defines whether the change will be animated.Copyright © 2020. All rights reserved.