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
- 리펙터링
- Observable
- Protocol
- clean architecture
- swiftUI
- Xcode
- 클린 코드
- map
- Clean Code
- MVVM
- uiscrollview
- Human interface guide
- combine
- UITextView
- UICollectionView
- ribs
- swift documentation
- 리팩토링
- 스위프트
- 애니메이션
- rxswift
- ios
- 리펙토링
- collectionview
- HIG
- uitableview
- Refactoring
- SWIFT
- RxCocoa
- tableView
Archives
- Today
- Total
목록ListStyle (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] List 사용방법 (리프레시, multiSelection, Section, Hierarchical List, ListStyle)
목차) SwiftUI의 기본 - 목차 링크 List 형태 Hashable을 따르고, View를 준수하는 두 개의 제네릭스로 구성 struct List where SelectionValue : Hashable, Content : View 사용방법은 List 후 클로저안에 subviews들을 넣어서 구현 struct ContentView: View { var body: some View { List { Text("A List Item") Text("A Second List Item") Text("A Third List Item") } } } List(:) { } 형태로도 사용이 가능 struct Ocean: Identifiable { let name: String let id = UUID() } privat..
iOS 기본 (SwiftUI)
2022. 8. 25. 23:33