我正在展示一个带有 UIModalTransitionStyleCoverVertical 的 modalViewController,然后,当用户选择此 modalView 的一行时,我将展示另一个 modalView,如下所示:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
CenterViewController *nextView = [[CenterViewController alloc] init];
nextView.modalPresentationStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:nextView animated:YES];
[nextView release];
}
问题是,无论我为第二个模态视图控制器初始化哪种类型的过渡样式模式,过渡样式都保持为 UIModalTransitionStyleCoverVertical。
我错过了一些相关的东西吗?提前致谢。