Answers for "swift key value"

0

swift dictionary get key from valye

let dict: [Int: String] = [1: "one", 2: "two", 4: "four"]

if let key = dict.someKey(forValue: "two") { 
    print(key)
} // 2
Posted by: Guest on October-15-2020
0

how to get list of value from specific keys in array object in swift

import Foundation

let strings = [
    "one",
    "two",
    "three"
]

let ints = strings.map { (string) -> Int in
    return string.count
}
Posted by: Guest on December-16-2020

Code answers related to "swift key value"

Code answers related to "Swift"

Browse Popular Code Answers by Language