搜索 nsdictionary 的 nsarray
我有一个充满 NSDictionaries
的 NSArray
。这些词典的共同键之一是“名称”。我有另一个数组,里面充满了名字。我想搜索第一个数组,如果它找到一个名称,则应该将字典添加到第三个可变数组中。第三个数组包含名称数组中名称的所有字典。
I have an NSArray
filled with NSDictionaries
. One of the keys the dicts have in common is "name". I have another array, filled with names. I want to search the first array, if it finds a name it is supposed to add the dictionary to a third mutable array. The third array then contains all dictionary which names are in the name-array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“快速枚举”,通常也称为 for-in 循环:
此外,要比较 NSString,请使用 -isEqualToString:。
Use "fast enumeration", commonly also known as for-in loop:
Also, to compare NSString's, use -isEqualToString:.