Do.

Swift - 구조체 또는 클래스의 프로퍼티 순차적으로 값 얻기 본문

iOS

Swift - 구조체 또는 클래스의 프로퍼티 순차적으로 값 얻기

Hey_Hen 2022. 2. 9. 15:55

 

구조체나 클래스의 속성들을 순차적으로 얻을 수 있는 방법에 대해서 설명하고자 한다.

 

예를들어

struct Person {
  let name: String
  let age: String
  let gender: String
}
 

요런 구조체가 있다고 하면

 

for {Property} in {Object} {
  print({Property}.key, {Object}.value)
}

//will print out
name: henry
age: 28
gender: male
 

이런식으로 접근할 수 있게 된다.

 

Swift Standard Library 에 Mirror 라는 객체를 이용하게 된다

https://developer.apple.com/documentation/swift/mirror/

Apple Developer Documentation

An unknown error occurred.  Developer Documentation Discover iOS iPadOS macOS tvOS watchOS Safari and Web Games Business Education WWDC Design Human Interface Guidelines Resources Videos Apple Design Awards Fonts Accessibility Localization Accessories Develop Xcode Swift Swift Playgrounds TestFligh...

developer.apple.com

설명은

A representation of the substructure and display style of an instance of any type.

출처 입력

말 그대로...

 

사용법

struct Person {
  let name: String
  let age: String
  let gender: String
}

let person = Person(name: "henry", age: "28", gender: "male")
 

위와 같이 정의된 person이 있다고 했을 때

 

let mirror = Mirror(reflecting: person)

for child in mirror.children {
  print("\(child.label ?? ""): \(child.value)")
}

//will print out
name: henry
age: 28
gender: male
 

Awesome 😎

 

 

Comments