I'm developing a game in xcode 5, and after a collision I need to change the view (it's a new view, not the previous, nor the rootView).
Is it possible to do this without using segues?
I'm developing a game in xcode 5, and after a collision I need to change the view (it's a new view, not the previous, nor the rootView).
Is it possible to do this without using segues?
Here's a couple ways off the top of my head:
You can use UINavigationController to push another view into the user's view, or you can do a "presentViewController:
".