0

我收到 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)中的“黑色”?

4

1 回答 1

1

首先,重命名self.productself.products. 它是多个产品的数组,请相应地命名。

您可以将现有的NSPredicate混乱替换为:

self.filteredProducts = self.products.filter{ $0["title"] == "Chair" }

你可以像这样按颜色过滤:

self.filteredProducts = self.products.filter{ product in
    return product["attributes"]?.contains{ attribute in
        return attribute["name"] == "Color" &&
               attribute["options"]?.contains("Black") ?? false
    } ?? false
}
于 2016-12-01T07:27:26.090 回答