cell.text = [tableoptions objectAtIndex:indexPath.row];
当我写这个陈述时,我得到警告,例如'setText:'已被弃用。
如何删除此警告?????
答案 0 :(得分:2)
尝试:
cell.textLabel.text = [tableoptions objectAtIndex:indexPath.row];
不推荐使用text属性,并引入了textLabel和detailedTextLabel。请参阅Apple's Documentation。