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
- rxswift
- Xcode
- uitableview
- tableView
- MVVM
- 스위프트
- ribs
- 리팩토링
- Human interface guide
- Clean Code
- Protocol
- UITextView
- Observable
- RxCocoa
- map
- HIG
- UICollectionView
- swift documentation
- ios
- swiftUI
- scrollview
- combine
- 애니메이션
- 리펙토링
- clean architecture
- 클린 코드
- uiscrollview
- Refactoring
- SWIFT
- collectionview
Archives
- Today
- Total
목록EmptyView (1)
김종권의 iOS 앱 개발 알아가기
목차) SwiftUI의 기본 - 목차 링크EmptyView이름 그대로 아무것도 가지고 있지 않은 뷰EmptyView()에 frame, foregroundColor 옵션을 주어도 아무런 표시가 남지 않음struct ContentView: View { var body: some View { VStack { Text("Text1") EmptyView() .frame(height: 20) .foregroundColor(.blue) Text("Text2") Spacer() .frame(height: 20) Text("Text3") } }}EmptyView의 사용처아무런 뷰를 사용하고 싶지 않을때 선언Toggle에 la..
iOS 기본 (SwiftUI)
2022. 9. 11. 23:56