I'm switching view controllers and I want to be able to change the transition when it switches. Currently, it is the default transition, which is cover vertical, and I would like it to be cross dissolve.
Here is the code for switching view controllers:
SecondViewController *secondViewController =
[self.storyboard instantiateViewControllerWithIdentifier:@"secondViewController"];
[self presentModalViewController:secondViewController animated:YES];