I used to program in Objective-c, I used
UIStoryboard *FILLIN = [UIStoryboard storyboardWithName:@"FILLIN" bundle:nil];
UIViewController *FILLIN = [FILLIN instantiateViewControllerWithIdentifier:@"FILLIN"];
FILLIN.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:FILLIN animated:YES completion:nil];
but that doesn't work anymore. Also, when I try to use a modal to go the the view controller I want, it messes up and crashes. I am trying to get to the viewController from a button, and I also need to be able to go to different storyboards. If you could, i need to know how to do what my objective-c code did, but in swift. Thanks in advance for your help!