0

I'm an iphone app developer. I'll use storyboard.

I want to push each other ViewController in conditions without button click. Can I get solution? Thanks!

hyekyung
  • 671
  • 2
  • 14
  • 27
  • possible duplicate of [IOS7, Segue and storyboards - How to create without a button?](http://stackoverflow.com/questions/21205485/ios7-segue-and-storyboards-how-to-create-without-a-button) – nhgrif May 17 '15 at 22:03

2 Answers2

1

You can also use performSegueWithIdentifier:sender:, if everything's already set up in interface builder. You'll need to specify the "identifier" in the Attributes inspector.

samson
  • 1,152
  • 11
  • 23
0

You can :

Presenting View Controllers from Other View Controllers

taking the desired view controller from your storyboard with:

instantiateViewControllerWithIdentifier:

Pochi
  • 13,391
  • 3
  • 64
  • 104