当我们单击一个单元格时,我有一个 UItableview 我想获取单元格中的数据,并且必须分配给另一个控制器中的 UIlabel 并显示它。就像我想对 tableview 中的所有单元格一样
在那个控制器中,我有一个 UIlabel,我想将单元格数据更新为那个。
有人能帮我吗?
(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellidentifier=@"cell";
UITableViewCell *cell=[tableview dequeueReusableCellWithIdentifier:cellidentifier];
if (cell==nil) {
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellidentifier];
}
cell.textLabel.text=[array objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
Companydetails *details1= [[Companydetails alloc] initWithNibName:@"Companydetails" bundle:nil];
details1.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:details1 animated:NO];
[details1 release];
UITableViewCell *cell=[tableView cellForRowAtIndexPath:indexPath];
}