我的表格中有一些信息是我从服务器上获取的,当我点击一行时,我希望将它们放在我的详细信息视图中,请您帮我完成此实现?
这是我的didSelectRowAtIndexPath
TestDetailView *c = [[TestDetailView alloc] init];
c = [_data objectAtIndex:indexPath.row];
}
提前致谢!
答案 0 :(得分:0)
我认为你的问题在这里:
TestDetailView *c = [[TestDetailView alloc] init];
c = self.data[indexPath.row];
不应该是:
TestDetailView *c = [[TestDetailView alloc] init];
[c setData:[subComponents objectAtIndexPath:indexPath]];