0

In the "settings" app of iPad, if u click on "General" > "About", then click on "General" at the side. The "About" page will jump back to root view controller.

How do I achieve that in swift?

I'm currently using self.splitViewController?.showDetailViewController on click at "masterview"

JackyW
  • 345
  • 2
  • 11

1 Answers1

1

Can you try this?

self.splitViewController?.navigationController?.popToRootViewController(animated: true)
Mahmud Ahsan
  • 1,755
  • 19
  • 18