【发布时间】:2011-01-23 09:02:36
【问题描述】:
我有一个类似的 NSDictionary
{
nodeAttributeArray = (
{
attributeName = ReportDate;
nodeContent = "08-31-1986";
},
{
attributeName = ReportType;
nodeContent = PQ1;
}
);
nodeName = Period;
},
{
nodeAttributeArray = (
{
attributeName = ReportDate;
nodeContent = "08-31-1987";
},
{
attributeName = ReportType;
nodeContent = PQ2;
}
);
nodeName = Period;
}
我在这里显示了 2 个值。但是我的字典里有近 50 个这样的成员 如何在 for 循环中访问 this 的内容?
我想要“nodeContent”中的值
谢谢。
【问题讨论】:
标签: iphone objective-c nsdictionary