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
- SWIFT
- 리펙터링
- Clean Code
- map
- rxswift
- collectionview
- RxCocoa
- uitableview
- ribs
- combine
- swiftUI
- UICollectionView
- 애니메이션
- Observable
- tableView
- 클린 코드
- swift documentation
- ios
- Human interface guide
- Protocol
- 스위프트
- uiscrollview
- clean architecture
- 리펙토링
- UITextView
- 리팩토링
- HIG
- Xcode
- Refactoring
- MVVM
Archives
- Today
- Total
목록obejctwillchanged (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] ObservableObject, @Published, obejctWillChanged, @ObservedObject, @State 개념 정리
ObservableObjec, @Published, objectWillChanged 개념ObservableObject는 옵저빙 될 수 있는 모델을 의미옵저빙 된다는 의미는 값이 변경되었을때, 이 모델을 옵저빙하고 있는 대상에게 알림을 주는 것변경된다는 기준은 @Publihsed 키워드로 선언된 프로퍼티가 변경되었을때 알림을 줌@Published를 사용하면 objectWillChanged라는 내부 프로퍼티에 send()를 날리는 것과 동일class User: ObservableObject { let name = "name" /// @Published: 변경되었다는 기준이 될 property에 선언 @Published var score = 0 /* objectWil..
iOS 응용 (SwiftUI)
2024. 8. 16. 01:32