如何向下钻取uitableview

时间:2012-09-03 12:30:38

标签: objective-c ios cocoa-touch uitableview

我看过一个关于如何创建向下钻取表格视图的教程,并想知道如何做同样的事情,但我没有UITableViewController而是UIViewController
目前我的ViewController中有2个TableView。第一个显示数据,第二个用于过滤。

1 个答案:

答案 0 :(得分:0)

我在编写使用多个表视图的应用时遇到了同样的问题。你难以让segue工作吗?我遇到了同样的问题,并在我的uitableviewcontroller中使用了以下segue代码:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
TypeTableViewController *nextController = segue.destinationViewController;
NSIndexPath *idx = [self.tableView indexPathForSelectedRow];
nextController.detailLocation = [[self.tableData objectAtIndex: idx.row] objectForKey: @"location"];
nextController.detailType = [[self.tableData objectAtIndex: idx.row] objectForKey: @"type"];

NSLog(@"This is the first attached location: %@",[[self.tableData objectAtIndex: idx.row] objectForKey: @"location"]);
}

这是您的问题所在,还是在尝试过滤数据时的其他位置?