标签: iphone objective-c ios uitableview
setText 已弃用警告消息显示在UITableViewCell
UITableViewCell
[cell setText:animal.name];
编译时。但程序运行正常。
答案 0 :(得分:12)
是的,UITableViewCell中的setText:已被弃用。
setText:
使用以下内容代替。
[cell.textLabel setText:animal.name];