Using swift I have my IOS application's UITabBarController set up like so
Home | Profile | Create
Now I have other views that are not related to the views on the UITabBarController like a (View with A photo with a description).
So say I go to add the UITabBarController to the (View with a photo with description)
Xcode would then change my UITabBarController like so
Home | Profile | Create | (View with a photo with description)
when I want the tab bar to still be at the bottom of my (View with a photo with description) but to stay like
Home | Profile | Create
I still want to have The UITabBarController at the bottom of this view and every other view.
I can't figure out how to do this without the UITabBarController forcing the view to have a relationship with it.