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];
}
問題は、この 2 番目のモーダル ビュー コントローラー用に初期化するトランジション スタイル モードの種類に関係なく、トランジション スタイルが UIModalTransitionStyleCoverVertical のままであることです。
関連するものがありませんか?前もって感謝します。