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
  • 314,917
  • 42
  • 532
  • 579

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
  • 88,797
  • 17
  • 166
  • 215