I used the Objective-C code below to pop a specific ViewController.
Objective-C
ViewController
for (UIViewController *controller in self.navigationController.
Try following code:
for controller in self.navigationController!.viewControllers as Array { if controller.isKind(of: ViewController.self) { self.navigationController!.popToViewController(controller, animated: true) break } }