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
- tableView
- UITextView
- Refactoring
- HIG
- swiftUI
- swift documentation
- clean architecture
- SWIFT
- collectionview
- map
- Protocol
- RxCocoa
- uiscrollview
- 리펙터링
- Xcode
- combine
- 리팩토링
- Observable
- UICollectionView
- 클린 코드
- Human interface guide
- MVVM
- rxswift
- uitableview
- ribs
- Clean Code
- 스위프트
- ios
- 리펙토링
- 애니메이션
Archives
- Today
- Total
목록fixedSize (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/ckXQ2S/btsLKuA4ZOy/OoHV4MveSkK2M0k4t82qSk/img.png)
컨텐츠 크기만큼 크기 조절 방법ex) 내부 컨텐츠만큼 크기가 조절되지 않는 경우struct ContentView: View { var body: some View { HStack { Text("Test") .font(.largeTitle) RoundedRectangle(cornerRadius: 12) .fill(Color.blue) } }}(왼쪽 Text 높이만큼 오른쪽 파란색 뷰의 세로 길이를 맞추는 방법?)fixedSize(horizontal:vertical:)을 사용하면 콘텐츠 크기만큼 크기 고정이 가능struct ContentView: View { ..
iOS 응용 (SwiftUI)
2025. 1. 14. 01:27