How can you push to another view controller without prepareForSegue
?
myClassVC *viewController = [myClassVC alloc];
UIStoryboardSegue *segue = [
[self presentViewController:viewController animated:YES completion:nil];
is not needed, as the segue will push the destination view controller using the transition you selected automatically.
If you don't want to use the segue
process you'll need to manually push the view controller with:
[self presentViewController:viewController animated:YES completion:nil];
but make sure you remove the segues in the Storyboard first.