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 |
Tags
- uitableview
- Refactoring
- UITextView
- SWIFT
- clean architecture
- Protocol
- map
- 클린 코드
- swift documentation
- collectionview
- MVVM
- UICollectionView
- 스위프트
- combine
- 리펙토링
- 리펙터링
- RxCocoa
- ribs
- 애니메이션
- rxswift
- swiftUI
- HIG
- 리팩토링
- Human interface guide
- tableView
- Clean Code
- ios
- Observable
- uiscrollview
- Xcode
Archives
- Today
- Total
목록선언적 코딩 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] 선언형 프로그래밍 관점으로 코딩하는 방법 (명령형 vs 선언형, 선언적 코딩)
명령형 vs 선언형 코드 작성의 흐름명령형 프로그래밍"어떻게" UI를 업데이트할지 명시적으로 작성let label = UILabel()label.text = "Hello, World!"label.textColor = .bluelabel.frame = CGRect(x: 0, y: 0, width: 200, height: 50)view.addSubview(label) 선언형 프로그래밍좀 더 코드가 뷰의 형태와 닮은 형태로 작성struct ContentView: View { var body: some View { Text("Hello, World!") .foregroundColor(.blue) .frame(width: 200, height: 50) ..
iOS 접근성 (SwiftUI)
2024. 12. 19. 01:45