[learnappmaking.com/swift-keypath-how-to/] 처음에 \ 이 기호가 뭔지 이름도 몰라서 검색하기가 힘들었다... 키패스는 무엇인가? struct Videogame { var title:String var published:String var rating:Double } let cyberpunk = Videogame(title: "Cyberpunk 2077", published: "2020", rating: 5) let titleKeyPath = \Videogame.title print(cyberpunk[keyPath: titleKeyPath]) // Output: Cyberpunk 2077 Keypaths in Swift are a way of storing a refere..