在表视图中选择单元格时,我需要能够在同一ViewController中的其他表视图中显示其详细信息。
我只需要任何参考来开始。大多数教程讲述了如何通过segue在其他ViewController中显示数据。这不是我的情况。我需要在Same ViewController中显示细节。
谢谢
答案 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;
}
或强>
获取选择行的索引并从数组中选择值