TableView didSelectAtIndexPath:向左滑动到ViewController

时间:2013-01-22 09:31:04

标签: objective-c uitableview

我使用tableViewController和第二个viewController来显示更多细节信息。 这工作正常,但我喜欢使用另一个转换:tableView应向左滑动,详细viewController应从右侧滑入。

我希望这只是一个场景,但我无法找到它。这是我目前使用的代码:

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

1 个答案:

答案 0 :(得分:2)

您可以使用导航控件

[self.navigationController pushViewController:view controller name animated:YES];