I have a UITabBarViewController that is the rootViewController of the UIWindow.
The tabBarViewController contains a UIViewController; lets call it HomeViewController. HomeViewController contains a UIViewController called ListViewController. ListViewController contains a UIViewController called ItemViewController
The UITabBar is always visible.
Pressing the Home tab returns to HomeViewController even if I am in ItemViewController. I do not want this. I want to navigate to ListViewController and then to HomeViewController should I press the Home tab bar again.
How to navigate back from a UIViewController to its closest parent? In this case, How to return from ItemViewController to ListViewController if you press the Home tab bar once?
The tabBarViewController contains a UIViewController; lets call it HomeViewController. HomeViewController contains a UIViewController called ListViewController. ListViewController contains a UIViewController called ItemViewController
Code Block UIWindow HomeViewController ListViewController ItemViewController
The UITabBar is always visible.
Pressing the Home tab returns to HomeViewController even if I am in ItemViewController. I do not want this. I want to navigate to ListViewController and then to HomeViewController should I press the Home tab bar again.
How to navigate back from a UIViewController to its closest parent? In this case, How to return from ItemViewController to ListViewController if you press the Home tab bar once?