1

tableViewController と 2 番目の viewController を使用して、より詳細な情報を表示します。これは問題なく動作しますが、私は別のトランジションを使用するのが好きです: tableView は左側にスライドし、詳細 viewController は右側からスライドする必要があります。

設定だけだといいのですが、見つかりません。これは私が現在使用しているコードです:

ViewControllerDealDetail *thisDetailInformations =[[ViewControllerDealDetail alloc] initWithNibName:nil bundle:nil];
thisDetailInformations.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController: thisDetailInformations animated:YES];
4

1 に答える 1

2

ナビゲーションコントロールを使用できます

[self.navigationController pushViewController:view controller name animated:YES];
于 2013-01-22T09:48:58.983 に答える