[iOS/Swift] 알아두면 유용한, 열거형(Enumeration) ①
Enumeration, 열거형 타입에 대해 알아보기 전에 한 가지 예시를 먼저 살펴보도록 하겠습니다. 📌 스터디 그룹원의 닉네임과 취미를 Dictionary( String : [String]) 타입으로 정리합니다. let myStudyGroupNickName : [String : [String]] = [ "Lime" : ["Running", "Drinking"], "Jason" : ["Listening Music", "swimming" ], "Kate" : ["play Game", "Basketball"], "Happy" : ["Watch Movie", "namuWiki"] ] 📌 이후, Lime이란 닉네임을 가진 사람의 2번째 취미를 호출합니다. 별도의 상수(limeHobbie)에 Key 값으로 "Li..
2022. 11. 5.