如何将存储在 NSMutableArray.. 中的值打印到 UITableViewcell

Posted

技术标签:

【中文标题】如何将存储在 NSMutableArray.. 中的值打印到 UITableViewcell【英文标题】:how can i print values stored in NSMutable Array.. to UITableView cell 【发布时间】:2010-08-17 05:49:50 【问题描述】:

我有这个 coe....谁能告诉我如何在 UITable 视图单元格上打印它

[customerDetailsArray addObject:[NSDictionary dictionaryWithObjectsAndKeys:nameStr,@"name",cityStr,@"city",countryStr,@"country",nil]]; NSLog(@"customerDetailsArray %@",customerDetailsArray);

我正在尝试这种方式,但没有成功

if(indexPath.row == 0) cell.textLabel.text = [NSString stringWithFormat:@"",[[customerDetailsArray objectAtIndex:indexPath.row] objectForKey:@"name"]];

谢谢你..如果你喜欢我的问题至少接受它......

【问题讨论】:

【参考方案1】:

您每次都输入一个空白字符串。改成这样:

if(indexPath.row == 0)  
    cell.textLabel.text = [NSString stringWithFormat:@"%@",[[customerDetailsArray objectAtIndex:indexPath.row] objectForKey:@"name"]]; 

注意%@

【讨论】:

感谢 Matt 的快速回复,但你知道..即使我已经尝试过了..但是 UITable 视图单元格上出现了 NULL 值..但是当我使用 NSLog 打印数组时...它打印正确....等待你的回应马特 您确实将%@ 放入了[NSString stringWithFormat:@"%@" 中?你能过去看看数组是什么样子的吗?

以上是关于如何将存储在 NSMutableArray.. 中的值打印到 UITableViewcell的主要内容,如果未能解决你的问题,请参考以下文章

如何在 NSMutableArray 中存储 indexPath 时传入节值

如何在 NSMutableArray 中选择特定索引并存储在 nsarray [关闭]

如何将存储在 NSMutableArray.. 中的值打印到 UITableViewcell

WatchKit:如何在 objC 中动态地对存储在 Nsmutablearray 中的图像进行动画处理

如何将CGContextAddArc(CGContextRef)中的所有点存储到NSMUtableArray

如何在 NSMutableArray* 或 NSMutableDictionary* 中存储“int”值?以整数形式出现的 JSON 数据的长期问题。