gpt4 book ai didi

iphone - cell.detaillabel 的文本未显示

转载 作者:行者123 更新时间:2023-11-28 20:23:06 25 4
gpt4 key购买 nike

我有一个 tableView,我需要在其中显示 textlabeldetailtextlabel

但是 detailtextlabel 没有显示。

-(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];
}

NSMutableDictionary *d2 =[[NSMutableDictionary alloc]initWithDictionary:[autocompleteUrls objectAtIndex:indexPath.row]];

cell.textLabel.text = [NSString stringWithFormat:@"%@",[d2 valueForKey:@"FLName"]];
cell.detailTextLabel.text=@"Id";
cell.textLabel.font=[UIFont boldSystemFontOfSize:12];
cell.textLabel.numberOfLines=0;

return cell;
}

但是 detailtextlabel 没有显示,为什么?

最佳答案

你使用 UITableViewCellStyleDefault 但你必须使用 UITableViewCellStyleSubtitle

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

关于iphone - cell.detaillabel 的文本未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15140064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com