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
- combine
- 리펙토링
- SWIFT
- swiftUI
- Observable
- Xcode
- rxswift
- map
- Human interface guide
- ios
- Protocol
- Clean Code
- ribs
- HIG
- 스위프트
- tableView
- 클린 코드
- collectionview
- 리펙터링
- uiscrollview
- uitableview
- 애니메이션
- MVVM
- clean architecture
- Refactoring
- swift documentation
- UICollectionView
- UITextView
- RxCocoa
- 리팩토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] private 프로퍼티 접근하는 방법 (#Mirror, private var, private let 프로퍼티 접근) 본문
iOS 응용 (swift)
[iOS - swift] private 프로퍼티 접근하는 방법 (#Mirror, private var, private let 프로퍼티 접근)
jake-kim 2023. 10. 8. 01:55private 프로퍼티 접근 아이디어
- Mirror를 통해 property의 문자열 이름을 통해 접근
- Mirror란?
- 인스턴스의 *display style과 하위 정보를 표현하는 구조체
* display style: struct인지, class인지, enum인지 구분을 위한 값 - Mirror는 특정 인스턴스의 타입, 그 인스턴스의 하위 값(인스턴스, 메소드 등)의 정보를 가지고 있는 것
- 구체적인 개념은 이전 포스팅 글 참고
- 인스턴스의 *display style과 하위 정보를 표현하는 구조체
Mirror로 private 프로퍼티 접근하기
- 예제 코드 준비
- 외부에서 SomeClass의 private 프로퍼티인 name에 접근하는게 목적
- 아래처럼 private 키워드를 사용하면 사용하는쪽에서 접근이 불가능
import UIKit
class SomeClass {
private var name = "jake"
}
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let instance = SomeClass()
instance.name // 'name' is inaccessible due to 'private' protection level
}
}
- private 접근 방법
- Mirror로 instance를 감싼다음 "name"의 이름으로 접근하는것
- Mirror로 instance를 감싸기
let mirror = Mirror(reflecting: instance)
- mirror의 children, first(where:)를 사용한 후 값이 필요하므로 value로 접근하면 완료
let name = mirror
.children
.first { label, _ in label == "name" }?
.value
print(name) // "jake"
이름으로 private 프로퍼티 접근 추상화
- Mirror에 extension으로 확장
extension Mirror {
func property(name: String) -> Any? {
children
.first { label, _ in label == name }?
.value
}
}
- 쉽게 접근 가능
class SomeClass {
private var name = "jake"
private var age = 20
}
print(mirror.property(name: "name")) // "jake"
print(mirror.property(name: "age")) // 20
- 전역함수로 만들면 사용하는쪽에서 Mirror를 만들필요도 없이 간편하게 사용이 가능
func property(instance: Any, propertyName: String) -> Any? {
Mirror(reflecting: instance)
.property(name: propertyName)
}
print(property(instance: instance, propertyName: "name")) // "jake"
* 전체 코드: https://github.com/JK0369/ExAccessPrivateProperty
* 참고
https://developer.apple.com/documentation/swift/mirror
https://www.swiftwithvincent.com/newsletter/are-private-properties-really-private
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] UITableView의 backgroundView 프로퍼티 (#썸네일, 스켈레톤 뷰) (0) | 2023.10.10 |
---|---|
[iOS - swift] UITextChecker 개념 (오타검사, 자동완성) (0) | 2023.10.09 |
[iOS - swift] PropertyWrapper를 이용한 디버깅 테크닉 (#이벤트 로깅) (0) | 2023.10.07 |
[iOS - swift] UIButton 액션 핸들러 selector없이 간결하게 표현하기 (#selector, #addAction) (3) | 2023.10.06 |
[iOS - swift] Measurement, MeasurementFormatter 개념 (#단위 변환, cm, m) (2) | 2023.10.05 |
Comments