I have this code
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@\"PlaceView\"]; [self presentViewController:newVi
For Storyboards, you should use performSegueWithIdentifier like so:
performSegueWithIdentifier
[self performSegueWithIdentifier:@"identifier goes here" sender:self];