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
- swift documentation
- Xcode
- Human interface guide
- Protocol
- 리팩토링
- uitableview
- RxCocoa
- combine
- swiftUI
- ribs
- Refactoring
- map
- rxswift
- Clean Code
- MVVM
- tableView
- UICollectionView
- 애니메이션
- ios
- collectionview
- Observable
- HIG
- 클린 코드
- uiscrollview
- UITextView
- 리펙토링
- 리펙터링
- SWIFT
- 스위프트
- clean architecture
Archives
- Today
- Total
목록PlainButtonStyle() (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bLcgLr/btrLK6t528A/idtTHMcVC3NpZ7a0wqQzWK/img.png)
가장 일반적인 List 형태 List 하위에 NavigationLink가 있는 형태 import SwiftUI struct ContentView: View { var items = (0...100).map(String.init).map(SomeModel.init) var body: some View { NavigationView { List(items){ item in NavigationLink( destination: { Text(item.val) }, label: { Text(item.val) } ) } .navigationTitle("List 예제") } } } struct SomeModel: Identifiable { let val: String var id: String { val } } 오른쪽..
iOS 응용 (SwiftUI)
2022. 9. 26. 22:15