怎样获取UITabelView cell中的label的内容

 我来答
匿名用户
推荐于2016-01-26
展开全部
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"shoppingCell";
ShoppingGoodsCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[ShoppingGoodsCell alloc]initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:cellIdentifier];
}
else
{
while (cell.contentView.subviews.lastObject != nil) {
[cell.contentView.subviews.lastObject removeFromSuperview];
}
}

UILabel *goodsName = [[UILabel alloc]initWithFrame:CGRectMake(80, 2, 205, 45)];
goodsName.font = [UIFont fontWithName:@"Helvetica" size:12];
goodsName.numberOfLines = 2;
goodsName.text = @"sjogjeojgesjgpesgpsejgpespgjspengosehgespgkerpogepgjpeosgjespofgjpes";

UILabel *numberLabel = [[UILabel alloc]initWithFrame:CGRectMake(80, 47, 205, 30)];
numberLabel.font = [UIFont fontWithName:@"Helvetica" size:12];
numberLabel.text = [countArray objectAtIndex:indexPath.row];
numberLabel.tag = indexPath.row;

UILabel *countLabel = [[UILabel alloc]initWithFrame:CGRectMake(80, 70, 40, 30)];
countLabel.font = [UIFont fontWithName:@"Helvetica" size:12];
countLabel.text = @"数量:";
//数量输入框
UITextField *countTxt = [[UITextField alloc]initWithFrame:CGRectMake(120, 74, 30, 20)];
countTxt.layer.cornerRadius = 5.0;
countTxt.layer.borderWidth = 0.5;
countTxt.tag = 110;

UILabel *uinitLabel = [[UILabel alloc]initWithFrame:CGRectMake(165, 70, 40, 30)];
uinitLabel.font = [UIFont fontWithName:@"Helvetica" size:12];
uinitLabel.text = @"单价";

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
[cell.contentView addSubview:goodsName];
[cell.contentView addSubview:numberLabel];
[cell.contentView addSubview:countLabel];
[cell.contentView addSubview:countTxt];
[cell.contentView addSubview:uinitLabel];
return cell;

}
这个是要获取每一个cell中比如:goodsName,numberLabel,countLabel 的text。而且不是在did selected中实现的
就烦条0o
2018-07-27 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46492
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部
你应该是didselect中跳转的吧,有indexpath就能获取到cell,有cell就看你是怎么add的label了,从cell或者cell.contentview中获取你对应tag的label。
不过建议你写个tableviewcell的子类然后delegate出去
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式