有关UITableviewcell的警告

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

当我写这个声明时,我收到警告,像'setText:'已被弃用。

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


尝试:

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

text属性已被弃用,textLabel和detailedTextLabel被引入。 请参阅Apple的文档。

链接地址: http://www.djcxy.com/p/26979.html

上一篇: Warning Regarding the UITableviewcell

下一篇: How to have Android Service communicate with Activity