theomen
theomen

Reputation: 919

Push segue transition in storyboard doesn't work for iPad app

I'm trying to implement a push segue transition for an iPad app between two view controllers using storyboard. I have done it using the same steps as iPhone apps, but push segue doesn't work, it only works if I did it using modal transition. I'm new into iPad developing so I understand I'm missing something.

Many thanks.

Upvotes: 2

Views: 872

Answers (1)

Ryan Poolos
Ryan Poolos

Reputation: 18561

You can't have a push transition without an underlying UINavigationController.

Is your initial view a UINavigationController? Or is the first view for the segue atleast a UINavigationController?

Upvotes: 5

Related Questions