Reputation: 3960
From questions like this and this, I know how to have a UIViewImage
push to a new UIViewController
programatically.
But how can I do this in completely in Storyboard? I like Storyboard and would like to not have multiple xib
files everywhere.
I've already enable User Interaction through Storyboard, but I still can't create a transition...
Upvotes: 0
Views: 683
Reputation: 9426
[self performSegueWithIdentifier:@"YourSegueIdentifier" sender:self];
Upvotes: 1