从单元格获取值,然后在其他表格视图iOS中显示详细信息

时间:2015-04-10 11:55:43

标签: ios objective-c iphone core-data

在表视图中选择单元格时,我需要能够在同一ViewController中的其他表视图中显示其详细信息。

我只需要任何参考来开始。大多数教程讲述了如何通过segue在其他ViewController中显示数据。这不是我的情况。我需要在Same ViewController中显示细节。

谢谢

1 个答案:

答案 0 :(得分:-1)

这可能对你有帮助......

NSString *ClickedGroupId, *ClickedGroupName;

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    UILabel *labelName = (UILabel *)[cell.contentView viewWithTag:1];
    ClickedGroupName= labelName.text;

    UILabel *labelId = (UILabel *)[cell.contentView viewWithTag:2];
    ClickedGroupId= labelId.text;
}

获取选择行的索引并从数组中选择值