I would like to know if, when Im using storyboards, can I still present view controllers using the method presentViewController:(UIViewController *) animated:(BOOL) completion:^(void)completion ?
Or do I have to use segues?
In my project there is a VC that could be presented by any of the other VCs from the hole app, so if I would use segues, there would be like 20 segues to this same VC.
Thank you.
That should still work. You would use
instantiateViewControllerWithIdentifier:to create the view controller from its storyboard definition before calling that method.