1

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?

rmaddy
  • 307,833
  • 40
  • 508
  • 550

1 Answers1

2

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:".

Community
  • 1
  • 1
Michael Dautermann
  • 87,822
  • 17
  • 159
  • 205