製品のNSDictionaryリストの応答を取得しています
{
"products": {
"title": "Chair",
"regular_price": "2.22",
"dimensions": {
"width": "",
"height": "",
"length": ""
},
"attributes": [{
"options": ["11\/30\/2016"],
"name": "Arrival Date"
}, {
"options": ["Black"],
"name": "Color"
}],
"categories": ["28"]
}
}.....
NSPredicate を使用すると、「Chair」という値を含む製品をフィルタリングできます。
let namepredicate = NSPredicate(format: "title == Chair")
self.filteredProducts = (self.product).filteredArrayUsingPredicate(namepredicate)
しかし、属性内の「色」、「黒」、および「黒」が別の配列(Swift)内にあるようにするにはどうすればよいですか?