Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SWIFT

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)")
 
PREVIOUS NEXT
Tagged: #create #dictionary #swift
ADD COMMENT
Topic
Name
3+4 =