Pops view controllers until the specified view controller is at the top of the navigation stack.
SDKs
- iOS 2.0+
- tvOS 9.0+
Framework
- UIKit
Declaration
func popToViewController(_ viewController: UIViewController, animated: Bool) -> [UIViewController]?
Parameters
view
Controller The view controller that you want to be at the top of the stack. This view controller must currently be on the navigation stack.
animated
Set this value to
true
to animate the transition. Passfalse
if you are setting up a navigation controller before its view is displayed.
Return Value
An array containing the view controllers that were popped from the stack.
Discussion
For information on how the navigation bar is updated, see Updating the Navigation Bar.