1

我使用 tableViewController 和第二个 viewController 来显示更多详细信息。这很好用,但我喜欢使用另一种转换:tableView 应该向左滑出,而 detail 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 回答