I have a View Controller with some buttons. These buttons are animated and move around the screen.
When one of them is pressed, I want to segue to another view controller, and still have them there on top of it.
Both the segued view controller and the buttons should still be accessible, meaning the user should be able to interact with them.
How can I overlay the view controller with the buttons over all the other buttons?
I have tried to create a view controller with a container view and the buttons on top of it, and have other view controllers in the container, but when I try to segue to another view controller, it covers the buttons.