关于UITableviewcell的警告

时间:2009-11-14 06:18:28

标签: iphone

cell.text = [tableoptions objectAtIndex:indexPath.row];

当我写这个陈述时,我得到警告,例如'setText:'已被弃用。

如何删除此警告?????

1 个答案:

答案 0 :(得分:2)

尝试:

cell.textLabel.text = [tableoptions objectAtIndex:indexPath.row];

不推荐使用text属性,并引入了textLabel和detailedTextLabel。请参阅Apple's Documentation