Answers for "swift dictionary"

6

create dictionary swift

var someDict:[String:Int] = ["One":1, "Two":2, "Three":3] // creates dictionary
var someVar = someDict["One"] // accesses the value of key "One"

print("The value of key = One is \(someVar)")
Posted by: Guest on June-16-2020
0

dictionary in swift

var someDict = [KeyType: ValueType]()
Posted by: Guest on February-15-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language