본문 바로가기
Mobile/Swift

Dictionary

by 꼰대코더 2024. 2. 7.

미리 선언하기 ( key : value ) 

let employee = ["name": "Michael Jackson", "job": "Singer", "location": "LA"]

 

키로 값 가져오기

 print( employee["name"] )

 

선언하고 나중에 설정

var heights = [String: Int]() 

heights["Yao Ming"] = 229 
heights["Shaquille O'Neal"] = 216 
heights["LeBron James"] = 206 

 

값 변경

heights["Yao Ming"] = 150

 

'Mobile > Swift' 카테고리의 다른 글

switch  (0) 2024.02.14
String  (0) 2024.02.08
enum  (0) 2024.02.07
Array  (0) 2024.02.07
ForEach  (0) 2024.02.07