这是我的代码中出现此错误的部分:
NSUInteger row = [indexPath row];
cell.text = [glossaryArray objectAtIndex:row]; // Right here is the problem
所以希望有人可以帮助我吗?感谢
答案 0 :(得分:4)
改为使用cell.textLabel.text
。
答案 1 :(得分:1)
将cell.text更改为cell.textLabel.text
答案 2 :(得分:1)
为什么不查看API文档?在UITableViewCell中寻找“文本”之后找出来是10秒:
细胞的文字。 (已弃用 iOS 3.0。使用textLabel和 而不是detailTextLabel属性。)