Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push segue in iOS 5 not working

I am very much new to IOS. I am using the storyboard feature to create a app

Here is what I want. I have two view Controllers, say oneViewController and twoViewController

I have a button on oneViewController. I ctrl+dragged the button from oneViewController to twoViewController and selected push from Segue.

I compiled the app on iOS 5.0 and run it, and it's not working. I changed push to model and it worked. Am I missing anything?

I am using the a part of this link and this link as a guidance.

like image 492
Nik Avatar asked Mar 23 '12 10:03

Nik


1 Answers

The "push" segue is modeled for use with changing views from the UITableViewController (UINavigationController), modal is acceptable switching between UIViewControllers.

Modal transitions...

enter image description here

like image 198
Mick MacCallum Avatar answered Oct 01 '22 12:10

Mick MacCallum