在TableView单元格中添加字幕

时间:2017-02-26 01:35:09

标签: ios objective-c xcode uitableview

我正在尝试向我的表格视图显示一个副标题,但我一直收到一条错误,上面写着'分配给只读属性'我的代码来部署文本

cell.textLabel.text = [arrayData objectAtIndex:indexPath.row];
cell.detailTextLabel = [arraySubtitle objectAtIndex:indexPath.row];

return cell;

但是在第二行,我收到了错误!请帮我!谢谢! (目标c)

1 个答案:

答案 0 :(得分:1)

您正尝试将(可能是字符串)值分配给cell的标签,而不是单元格标签的文本(属性)。
试试这个....

cell.textLabel.text = [arrayData objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [arraySubtitle objectAtIndex:indexPath.row];  // Update here, 

return cell;