Objective-c:当您单击表格行时,在detailView中显示信息

时间:2013-10-22 00:20:26

标签: ios objective-c xcode uitableview

我的表格中有一些信息是我从服务器上获取的,当我点击一行时,我希望将它们放在我的详细信息视图中,请您帮我完成此实现?

这是我的didSelectRowAtIndexPath

TestDetailView *c = [[TestDetailView alloc] init];
c = [_data objectAtIndex:indexPath.row];

 }

提前致谢!

1 个答案:

答案 0 :(得分:0)

我认为你的问题在这里:

TestDetailView *c = [[TestDetailView alloc] init];
c = self.data[indexPath.row];

不应该是:

TestDetailView *c = [[TestDetailView alloc] init];
[c setData:[subComponents objectAtIndexPath:indexPath]];