搜索 nsdictionary 的 nsarray

发布于 2024-11-13 23:29:52 字数 156 浏览 2 评论 0原文

我有一个充满 NSDictionariesNSArray 。这些词典的共同键之一是“名称”。我有另一个数组,里面充满了名字。我想搜索第一个数组,如果它找到一个名称,则应该将字典添加到第三个可变数组中。第三个数组包含名称数组中名称的所有字典。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友欢 2024-11-20 23:29:52

使用“快速枚举”,通常也称为 for-in 循环:

for (NSDictionary* dict in myArray) {

此外,要比较 NSString,请使用 -isEqualToString:。

   if ([[dict objectForKey: myKey] isEqualToString:myString]) {

   }

Use "fast enumeration", commonly also known as for-in loop:

for (NSDictionary* dict in myArray) {

Also, to compare NSString's, use -isEqualToString:.

   if ([[dict objectForKey: myKey] isEqualToString:myString]) {

   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文