I set up an iOS App with Swift and XCode 11. I'm using an UITabBar Controller and linked it with UIViews in my Storyboard. So my TabBar has three entries called VC-A, VC-B and VC-C.
Now I want to have a fourth view called VC-D which should be accessible from VC-A but in which I also can navigate back to VC-A. The Tab bar should also be still visible to navigate from VC-D to VC-B and from VC-D to VC-C, but not back.
I tried just to link from first to the second view via the StoryBoard but the TabBar disappears in the second view.