ios 怎么循环获取自定义单元格内容
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];
最好的方法使用标记
-(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];
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询