Yes, if you are using a navigation controller, you just need to click on the navigation controller:
[self.navigationController pushViewController:otherViewCon animated:YES]
Or if you want a modal transition:
[self presentModalViewController:otherViewCon animated:YES]
This is all assumed to be selfa UIViewController.
To get otherViewConusing the developed storyboard view controller:
otherViewCon = [self.storyboard instantiateViewControllerWithIdentifier:@"Other View"];
Dan f source
share