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
- 리펙터링
- Human interface guide
- Observable
- combine
- swiftUI
- ios
- UICollectionView
- 애니메이션
- HIG
- MVVM
- Xcode
- 리펙토링
- RxCocoa
- ribs
- Refactoring
- UITextView
- 클린 코드
- Protocol
- uiscrollview
- uitableview
- 리팩토링
- Clean Code
- tableView
- collectionview
- clean architecture
- map
- SWIFT
- rxswift
- 스위프트
Archives
- Today
- Total
목록GeometryProxy (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] GeometryReader, GeometryProxy 사용 방법 (뷰 레이아웃)
목차) SwiftUI의 기본 - 목차 링크 *초록색 뷰를 파란색뷰 오른쪽 하단에 위치시키는 방법? -> 아래에서 알아볼 GeomettryReader를 사용 GeometryReader, GeometryProxy 란? 뷰의 Container라고 생각하면 되고, 인수로 사용할 수 있는 GeometryProxy가 존재 GeometryProxy란 좌표와 사이즈 값을 가지고 있는 역할 즉, 컨테이너뷰에 관련하여 좌표를 구하고 싶을때나 컨테이너뷰의 크기를 알고 싶은 경우, proxy로 사용 struct ContentView: View { var body: some View { VStack { Text("Jake iOS 앱 개발 알아가기") GeometryReader { proxy in } } } } GeometryP..
iOS 기본 (SwiftUI)
2022. 10. 23. 23:09