>  Q&A  >  본문

objective-c - 如何从table向cell中传值?

问题是这样的,我现在想往自定义cell中传入几个判断条件,用以判断是否添加图片标签等等,请问能否在返回cell时添加用属性给cell中传值

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
            {
                tabelViewCell1 *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
                NSDictionary *dic = _arr[indexPath.row];
                cell.name.text = dic[@"userinfo"][@"uname"];
                [cell.imgView sd_setImageWithURL:[NSURL URLWithString:dic[@"userinfo"][@"icon"]]];
                cell.songId = @"ddd";
                return cell;
            }

songId并不能传进cell中

仅有的幸福仅有的幸福2750일 전750

모든 응답(1)나는 대답할 것이다

  • PHP中文网

    PHP中文网2017-04-28 09:08:11

    tableViewCell1에 songId를 정의하셨나요? 코드의 다른 부분에 문제가 있는지 확인하세요.

    회신하다
    0
  • 취소회신하다