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
- collectionview
- MVVM
- ios
- uiscrollview
- Xcode
- RxCocoa
- UITextView
- map
- swiftUI
- swift documentation
- uitableview
- combine
- 애니메이션
- UICollectionView
- 스위프트
- Human interface guide
- 리펙토링
- Refactoring
- SWIFT
- tableView
- 리팩토링
- rxswift
- Clean Code
- 클린 코드
- Observable
- HIG
- ribs
- clean architecture
- 리펙터링
- Protocol
Archives
- Today
- Total
목록ListStyle (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/l6hFT/btrJGVIf3Ch/kcOZjkkUPGF1sqnptyE0Ck/img.gif)
목차) 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