我已经从我的 CoreData 中获取了一个对象并将其存储在一个数组中,我使用的原型单元格是 leftDetail,我想在我的 TableView 中填充单元格,其中属性内容作为我的标题,属性键作为左侧细节. 就像联系人应用程序一样。
怎么做到呢?
这就是我设置单元格内容的方式:
if (matchingData.count <= 0)
{
cell.textLabel.text = @"no item found";
}
else {
NSString *displayData;
for (NSManagedObject *obj in matchingData) {
displayData = [obj valueForKey:@"Name"];
cell.detailTextLabel.text = displayData;
cell.textLabel.text = @"Name";
}
}
但这只会给我一个和一个左侧细节的标题。