我正在尝试过滤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”的过滤列表。