Pressing the jump button in iOS 5 does not work

I have a lot of new things for iOS. I use the storyboard function to create an application

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

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

I compiled the application on iOS 5.0 and ran it and it does not work. I changed the push to a model, and it worked. Did I miss something?

I am using part of this link and this link as a guide.

+6
source share
1 answer

The "push" segue modeled for use with view alteration from the UITableViewController (UINavigationController) , a modal valid switch between UIViewControllers .

Modal transitions ...

enter image description here

+4
source

Source: https://habr.com/ru/post/911489/


All Articles