如何在 iphone 应用程序中过滤包含 nsDictionary 的数组并将这些过滤后的元素添加到数组中
在我的 iPhone 应用程序中,我正在使用 NSDictionary,
我有一个数组,其中包含这样的字典
arrSelectedVersions(
{
CellStateKey = 0;
CellTextKey = Airlines;
},
{
CellStateKey = 1;
CellTextKey = Audit;
}
)
,现在我需要绘制键“CellTextKey”的值,ni 应该将这些值添加到数组中,我该怎么做,任何朋友都可以帮忙吗我,,
in my iphone app i am working with NSDictionary
i have a Array which contains a dictionary like this
arrSelectedVersions(
{
CellStateKey = 0;
CellTextKey = Airlines;
},
{
CellStateKey = 1;
CellTextKey = Audit;
}
)
now i need to pic the values for the key 'CellTextKey' n i should add those values into an array, how can i do this can any buddy help me,,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,
Try this,