在 detailTextLabel 中添加标签文本以及从 JSON 中提取的文本
Add label text in detailTextLabel as well as text pulled from JSON
我正在尝试在 detailTextLabel 中输入静态文本,它提供在某些上下文中提取的信息。
目前我有 [[cell detailTextLabel] setText: [[artist valueForKey:@"listeners"] description]];
这对于拉动听众的数量非常有用,但是我希望单元格显示类似 "Listeners : (number of listeners)".
的内容
我无法在这里工作的是在从 JSON.
中提取的数字之前加上 "Listeners : "
NSString *listeners = [NSString stringWithFormat:@"Listeners: %i", [[artist valueForKey:@"listeners"] description]];
cell.detailTextLabel.text = listeners;
我正在尝试在 detailTextLabel 中输入静态文本,它提供在某些上下文中提取的信息。
目前我有 [[cell detailTextLabel] setText: [[artist valueForKey:@"listeners"] description]];
这对于拉动听众的数量非常有用,但是我希望单元格显示类似 "Listeners : (number of listeners)".
我无法在这里工作的是在从 JSON.
中提取的数字之前加上 "Listeners : "NSString *listeners = [NSString stringWithFormat:@"Listeners: %i", [[artist valueForKey:@"listeners"] description]];
cell.detailTextLabel.text = listeners;