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
- 애니메이션
- MVVM
- clean architecture
- 리펙터링
- collectionview
- swiftUI
- HIG
- 클린 코드
- UITextView
- ribs
- Human interface guide
- Observable
- rxswift
- tableView
- uitableview
- Clean Code
- 리펙토링
- 스위프트
- SWIFT
- RxCocoa
- combine
- swift documentation
- uiscrollview
- map
- Refactoring
- Protocol
- ios
- UICollectionView
- Xcode
- 리팩토링
Archives
- Today
- Total
목록2024/09/16 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] @State 사용 주의사항 (뷰 업데이트)
@State 사용 케이스@State는 뷰에서 접근하는 프로퍼티struct ContentView: View { @State private var inputText = "" @State private var onAppear = false var body: some View { VStack { TextField(text: $inputText) { Text("placeholder...") } .onAppear { onAppear = true } if onAppear { Text(..
iOS 응용 (SwiftUI)
2024. 9. 16. 01:41