One, in the case of using storyboard
1, create directly in storyboard and arrow navigation Conroller, connect can
2, use segue jump
To reduce the interface (you can double-click in a blank space, or right click on the scale), this time we do not directly use the "button" interface, but the interface and interface between the connection, as shown in:
Note: 100% of the zoom is not able to interface and interface between the connection!
After the operation and the previous consistency, in order to be easy to understand, I still paste one:(directly with show connection)
Select "This line" to specify an identifier in the storyboard Segue identifier , which we will use later:
At this point we need to add an event for the button to display both the storyboard and. m files, as follows:
The action to create the event is the same as the previous line:
Create a name for this event, then click Connect:
In the event, add the following code, the identifier of the just connected, sender is generally "self":
[Self performseguewithidentifier:@ "Easycode" sender:self];
In this way, you can successfully jump.
Two, useless use storyboard case
1, on the basis of Navigationcontroller as Rootviewcontroller,
[Self.navigationcontroller PushViewController:self.newOrderViewController animated:yes];}
2, not tested
Presentmodalviewcontroller:newview Animated:yes]; Description: Jump through events [self dismissmodalviewcontrolleranimated:yes]; Description: Returned through an event. (In Newview)
iOS page jump