如何填充UITableViewCell Left Detail?

时间:2013-02-28 14:43:36

标签: iphone ios xcode tableview

我从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";

      }
   }

但这只会给我一个左右细节的标题。

1 个答案:

答案 0 :(得分:0)

<{1>}中的

您只需要设置:

tableView:cellForRowAtIndexPath: