How can I make the modal view controller be presented horizontally instead of vertically.
Current code:
ListSelectViewController *nextScreen = [[ListSelectViewController alloc] init];
[self.navigationController presentModalViewController:nextScreen animated:YES];
[nextScreen release];
The only options available with
presentModalViewController:animated:are:UIModalTransitionStyleCoverVertical(default)UIModalTransitionStyleFlipHorizontalUIModalTransitionStyleCrossDissolveUIModalTransitionStylePartialCurlSince you’re using a
navigationController, perhaps what you want to do instead is: