Dictionary
·
SwiftUI
딕셔너리란 [ 키 : 데이터, 키 : 데이터, ... ] 형식으로 저장되는 데이터다. 다음은 dictionary로 HTTP 응답 코드를 딕셔너리로 정리한 코드다.var responseMessages = [200: "OK", 403: "Access forbidden", 404: "File not found", 500: "Internal server error"] 다음처럼 새로운 빈 dictionary를 만들 수 있다var emptyDict: [String: String] = [:] 딕셔너리의 값 가져오기print(responseMessages[200])// Prints "Optiona..