Я получаю строку из ответа API и сохраняюсь в массиве.
for customParams in custom_attributes! {
if(customParams["attribute_code"] as! String == "small_image")
{
print(customParams["value"])
var myString = customParams["value"] as! String
//want to add this myString in array(myArray) one after another
var myArray :[String] = []
print(myArray)
}
}
Вывод:
myArray = ["myString1","myString2"......]
Как мне это сделать, ребята? Я все еще новичок в Swift ... Заранее спасибо!
"id": 6,
"products": {
"items": [{
"status": 1,
"custom_attributes": [
{
{
"attribute_code": "small_image",
"value": "small_image"
},
{
"attribute_code": "meta_keyword",
"value": "meta_keyword"
}]},
{
"status": 1,
"custom_attributes": [
{
{
"attribute_code": "small_image",
"value": "small_image"
},
{
"attribute_code": "meta_keyword",
"value": "meta_keyword"
}
]}]}}]
хочу получить customParams ["attribute_code"] == small_image