Answers for "how to convert array to dictionary in swift"

0

convert dictionary to array swift

let dic = ["1":"a", "2":"b", "3":"c"]

let arrayOfKeys = Array(dic.keys.map{ $0 })
print(arrayOfKeys) // [1, 2, 3]
let arrayOfValues = Array(dic.values.map{ $0 })
print(arrayOfValues) // [a, b, c]
Posted by: Guest on March-25-2020
0

swift map array to dictionary

let myDictionary = myArray.reduce([Int: String]()) { (dict, person) -> [Int: String] in
    var dict = dict
    dict[person.position] = person.name
    return dict
}

//[2: "b", 3: "c", 1: "a"]
Posted by: Guest on October-29-2020

Code answers related to "how to convert array to dictionary in swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language