0

我有一个自定义单元格(带有 5 个标签),它填充了我的自定义 UITableView。

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    //--> Need to get content of each label within the custom cell
}

感谢帮助谢谢!

4

1 回答 1

1

你可以用不同的方式来做

最好的方法是使用标签

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

  //get the labels using Tag from cell
  UILabel *label = ([[cell.contentView viewWithTag:yourTag] isKindOfClass:[UILabel class]])?(UILabel *)[cell.contentView viewWithTag:yourTag]:nil;


}

第二种方式是使用子视图循环。

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

  for(id subView in [cell.contentView subView])
  {

     if([subViews isKindOfClass:[UILabel class]])
     {
       UILabel *label = (UILabel *)subViews;
     }
 }

}

自定义单元类示例:

UILabel *myLabel = [[UILabel alloc] init]
myLabel.tag = 1;
[self.contentView addSubView:myLabel];
于 2013-03-13T02:50:35.060 回答