I have a TabBarController
with 2 tabs, and each of them is NavigationController
with UIViewController
s.
And, when I do some action at the 1st tab, I need be able to move one of UIView
s on the 2nd tab to the top of the stack.
How can I reach 2nd tab navigation stack from 1st tab?
I don't want switch to 2nd tab, only move its UIview
to the top of its stack
p.s. for example,
TabbarController
Tab1
NavigationController1
ViewController1
ViewController2
Tab2
NavigationController2
ViewController3
so from ViewController3
be able to put ViewController2
to the top of the stack NavigationController1