我正在尝试向我的表格视图显示一个副标题,但我一直收到一条错误,上面写着'分配给只读属性'我的代码来部署文本
cell.textLabel.text = [arrayData objectAtIndex:indexPath.row];
cell.detailTextLabel = [arraySubtitle objectAtIndex:indexPath.row];
return cell;
但是在第二行,我收到了错误!请帮我!谢谢! (目标c)
答案 0 :(得分:1)
您正尝试将(可能是字符串)值分配给cell
的标签,而不是单元格标签的文本(属性)。
试试这个....
cell.textLabel.text = [arrayData objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [arraySubtitle objectAtIndex:indexPath.row]; // Update here,
return cell;