일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WeatherManager
- 클로저의 캡슐화
- font book
- AnyObject
- 단일 책임원칙
- xcode로 날씨앱 만들기
- 한국어 개인정보처리방침
- MKMapViewDelegate
- 서체관리자
- UICollectionViewFlowLayout
- Startign Assignments
- Protocol
- swift
- 영문 개인정보처리방침
- 러닝타이머
- weak var
- Timer
- RunningTimer
- weatherKit
- addannotation
- 러닝기록앱
- CLLocationManagerDelegate
- UIAlertAction
- dispatchsource
- CoreLocation
- SwiftUI Boolean 값
- MKMapItem
- Xcode
- Required Reason API
- App Store Connect
- Today
- Total
VesselWheel
count : index with VStack 본문
import SwiftUI
struct ContentView: View {
var body: some View {
Form{
VStack {
ScrollView(){
VStack{
ForEach(1 ..< 31
){ index in
Text("Count : \(index)")
.font(.largeTitle)
}
}
// .infinity : VStack 이 가지는 최대한 너비
// ㄴ 화면 너비
.frame(maxWidth: .infinity)
}
.frame(height: 200)
.background(.orange)
Divider()
ScrollView(.horizontal, showsIndicators: false){
HStack{
ForEach(1 ..< 31
){ index in
Text("Count : \(index)")
.font(.largeTitle)
}
}
}
.frame(height: 200)
.background(.pink)
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
'Xcode Study' 카테고리의 다른 글
cocoa pods 사용법과 터미널 내용 (1) | 2023.10.18 |
---|---|
NavigationView with section in Form{} (0) | 2023.10.18 |
NavigationView (0) | 2023.10.18 |
단추 늘이기, 줄이기 (0) | 2023.10.18 |
func Count and Age present (0) | 2023.10.18 |