无法设置UITableViewCell detailTextLabel.text

时间:2011-09-09 10:53:09

标签: iphone uitableview

如果源存在,则不会显示detailTextLabel。相应地显示textLable.text。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    }

    // Configure the cell...
    if ([[NSUserDefaults standardUserDefaults] objectForKey:@"favouriteListArray"] != nil) {
        NSArray *listArray = [NSArray arrayWithArray:[[NSUserDefaults standardUserDefaults] objectForKey:@"favouriteListArray"]];
        NSLog(@"listArray:%@", listArray);
        NSDictionary *listDic = [listArray objectAtIndex:indexPath.row];
        NSLog(@"listDic:%@", listDic);
        cell.textLabel.text = [listDic objectForKey:@"Description"];
        cell.detailTextLabel.text = [listDic objectForKey:@"Address"];
    }

    return cell;

}

listDic的NSLogs

listDic:{
    Address = myAddress;
    Description = myDescription;
}

2 个答案:

答案 0 :(得分:10)

    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];

你需要使用initWithStyle:UITableViewCellStyleSubtitle

答案 1 :(得分:0)

斯威夫特(3)

let cell = UITableViewCell(style: .subtitle, reuseIdentifier: "cellIdentifier")