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 | 31 |
Tags
- 클린 코드
- ribs
- Observable
- 리펙터링
- Protocol
- clean architecture
- uiscrollview
- Refactoring
- 리팩토링
- RxCocoa
- 애니메이션
- UICollectionView
- Human interface guide
- MVVM
- UITextView
- SWIFT
- combine
- ios
- collectionview
- swiftUI
- 리펙토링
- uitableview
- HIG
- Xcode
- rxswift
- swift documentation
- tableView
- map
- Clean Code
- 스위프트
Archives
- Today
- Total
목록public private(set) (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Property 각 목적에 맞는 사용 방법 (getter, setter, public private(set))
모듈 구현 시 응집도를 높이기 위한 방법 외부에서 읽기만 가능하고 변경은 내부에서만 가능한 property 설정 public private(set) 사용 -> swift에서 get메서드가 필요없는 이유 private(set) 자세한 개념 참고 class Person { public private(set) var name: String init(name: String) { self.name = name } } var jake = Person(name: "jake") print(jake.name) // jake jake.name = "wiki" // error 발생 Computed Property의 용도 getter / setter 용도의 computed property storedProperty는 언더바를..
iOS 응용 (swift)
2021. 6. 18. 00:32