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
- 리펙토링
- 리펙터링
- collectionview
- 클린 코드
- MVVM
- rxswift
- SWIFT
- uiscrollview
- 스위프트
- Human interface guide
- ios
- ribs
- RxCocoa
- map
- Clean Code
- Xcode
- UICollectionView
- UITextView
- 리팩토링
- Protocol
- clean architecture
- Refactoring
- swift documentation
- swiftUI
- HIG
- uitableview
- Observable
- 애니메이션
- combine
- tableView
Archives
- Today
- Total
목록2024/09/20 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] @StateObject 사용 주의 사항 (Accessing StateObject's object without being installed on a View. This will create a new instance each time.)
@StateObject 사용하다 보는 주의 메시지StateObject의 객체에 접근하다보면 가끔 뷰 install되기 전에 StateObject의 객체 접근하여 매번 새로운 인스턴스가 생성된다는 문구가 등장전체 코드는 아래와 같고, 이 원인 제공은 바로 @StateObject로 선언한 object의 값을 변경할 때 발생@mainstruct ExStateObjectApp: App { var contentView = ContentView() var body: some Scene { WindowGroup { contentView .onAppear { contentView.changeAge() ..
iOS 응용 (SwiftUI)
2024. 9. 20. 01:51