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
- HIG
- rxswift
- combine
- 클린 코드
- UITextView
- ribs
- Refactoring
- 리펙토링
- 애니메이션
- UICollectionView
- MVVM
- Protocol
- clean architecture
- RxCocoa
- ios
- swift documentation
- uiscrollview
- map
- Human interface guide
- collectionview
- uitableview
- 스위프트
- 리팩토링
- Xcode
- swiftUI
- SWIFT
- 리펙터링
- Clean Code
- Observable
- tableView
Archives
- Today
- Total
목록(@state (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] 뷰가 업데이트 될 때 init호출 타이밍 개념 (@State, @StateObject, @ObservedObject, @EnvironmentObject)
뷰 상태 관리상태가 변경되면 뷰가 업데이트 되는데 상태를 관리하는 방법은 크게 3가지ObservableObject 모델을 아래 3가지로 참고@StateObject (혹은@State), @ObservedObject, @EnvironmentObject)class Person: ObservableObject { @Published var name: String init(name: String) { self.name = name print("init > Person Model") }}struct Subview: View { @StateObject var personByState = Person(name: "jake") @ObservedObject var..
iOS 기본 (SwiftUI)
2024. 10. 2. 01:12