如何从NSMutableArray中检索对象

时间:2011-06-17 06:03:18

标签: objective-c cocoa-touch

我是iPhone开发的新手。我正在解析XML数据并将其详细信息存储在自定义对象中。我有一个产品类,它有产品ID,产品名称等,我将它存储在一个对象中。该对象存储在NSMutableArray

我想在表格行中显示每个产品的名称。如何从NSMutableArray

中检索特定对象名称

1 个答案:

答案 0 :(得分:2)

如果你现在提出一些代码,你的问题会更清楚,但这里有一些想法......

Product * product = (Product *)[array objectAtIndex:0]; //this gives you the first product in the array

也许......

//print out the name of each product
for (Product * product in array)
{
    NSLog(@"%@", product.name);
}