From the tab bar controller I want to modally display 2 other view controllers (full screen). After I’m done with full screen 1 & 2 I want to go back to the selected tab in the tab bar controller.
However, when I use:
Self.view.window.rootviewcontroller.dismiss(animated: true, completion: nil)
It takes me back, but "viewdidappear" doesn't re-run. How can I present the selected tab bar VC again so that “viewdidappear” runs again?
