1

我正在尝试过滤NSArray包含NSDictionary. 这NSDictionary又包含NSDictionary在它里面。

它看起来像这样。

[
  {
    Comp_Name =      {
        text = "Quality Ace #5846-C";
    };
    ShipTo =         {
        text = 312025846;
    };
    SoldTo =         {
        text = 10000081;
    };
  },
  {
    Comp_Name =      {
        text = "Billington Ace Hardware  - 5863K";
    };
    ShipTo =         {
        text = 312025863;
    };
    SoldTo =         {
        text = 10000081;
    };
  }
]

我想将此数组过滤为一些与“Comp_Name”对象匹配的“文本”。

我正在使用的代码是:

_filteredList = [_unFilteredArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"Comp_Name == %@", searchBar.text]];

请帮助我获取基于对象“Comp_Name”、“text”的过滤列表。

4

1 回答 1

0

@rmaddy - 感谢您的帮助!!!@"Comp_Name.text == %@"工作得很好。

于 2012-10-29T15:03:24.873 回答