Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- IOS
- data_structure
- SeSAC
- 코테
- GCD
- 프로그래머스
- 오픈채팅방
- 등굣길
- rxswift
- swift
- MainScheduler.asyncInstance
- MainScheduler.Instance
- combine
- RaceCondition
- MainScheduler
- DispatchQueue
- SwiftUI
- 청년취업사관학교
- cleanarchitecture
- Realm
- MethodSwilzzling
- CoreBluetooth
- baseviewcontroller
- gitflow
- 명품cppProgramming c++
- SRP
- DiffableDataSource
- leetcode
- DependencyInjection
- DynamicMemberLookup
Archives
- Today
- Total
Do.
Swift - 구조체 또는 클래스의 프로퍼티 순차적으로 값 얻기 본문
구조체나 클래스의 속성들을 순차적으로 얻을 수 있는 방법에 대해서 설명하고자 한다.
예를들어
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 라는 객체를 이용하게 된다
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 😎
'iOS' 카테고리의 다른 글
Swift - JSON Encoding과 Decoding - Part2 (0) | 2022.02.09 |
---|---|
Swift - JSON Encoding과 Decoding - Part1 (0) | 2022.02.09 |
Swift - gitignore 파일 추가로 중요한 파일 숨기기 (0) | 2022.02.09 |
SwiftUI - SwiftUI에서 UIkit View 가져오기 (0) | 2022.02.09 |
Swift - 남은 길이만큼 특정 문자로 채우기 (0) | 2022.02.09 |
Comments