Tabs Behind Views

Hi all,

So I’m creating an app with segues and something is really bugging me. I’m not sure if this is meant to be here or if it can be removed, but whenever I move to a different view controller, a new “tab” is created. I’m not sure what the purpose of this is, but it’s annoying me as it looks bad in my opinion. If anyone could help remove this, it would be great.

Thanks

This is not a new tab.

This is a modal View, that is new with iOS 13

You need to change the modal presentation to full view.

But it depends if you have this in a navigation controller you should “push” it onto the view hierarchy instead to get the “back” button functionality inherently rather than coding one yourself

1 Like

Thanks! I changed the modal presentation to full screen and it works fine. I already had a back button, so I didn’t think that would provide any help.

Thanks again!

1 Like