UITableViewCell中不推荐使用的警告消息

时间:2011-11-23 12:45:13

标签: iphone objective-c ios uitableview

setText 已弃用警告消息显示在UITableViewCell

[cell setText:animal.name];

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

1 个答案:

答案 0 :(得分:12)

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

使用以下内容代替。

[cell.textLabel setText:animal.name];