As far as I know, this cannot be done declaratively. You either manually call
[sourceController pushViewController:destination animated:NO]
Or, if you use the segue algorithm, you can create your own subclass of UIStoryboardSegue
and implement the perform
method to do this. Then in the storyboard, you can use Custom segue and enter the name of your subclass of segue.
source share