Answers for "swift dict get 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

swift get keys from dictionary

componentArray = Array(dict.keys) // for Dictionary

componentArray = dict.allKeys // for NSDictionary
Posted by: Guest on October-27-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language