setText是已过时的警告消息,显示在UITableViewCell

[cell setText:animal.name];

编译时。但是程序运行正常。

最佳答案

是的,UITableViewCell中的setText:已被弃用。

使用以下内容代替。

[cell.textLabel setText:animal.name];

关于iphone - UITableViewCell中已弃用的警告消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8242412/

10-12 02:00