일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 클로저의 캡슐화
- UIAlertAction
- swift
- Protocol
- MKMapViewDelegate
- addannotation
- App Store Connect
- CoreLocation
- CLLocationManagerDelegate
- UICollectionViewFlowLayout
- Timer
- dispatchsource
- font book
- 영문 개인정보처리방침
- 단일 책임원칙
- RunningTimer
- Required Reason API
- weatherKit
- MKMapItem
- 러닝타이머
- 서체관리자
- xcode로 날씨앱 만들기
- AnyObject
- 러닝기록앱
- 한국어 개인정보처리방침
- SwiftUI Boolean 값
- Startign Assignments
- Xcode
- weak var
- Today
- Total
VesselWheel
func Count and Age present 본문
import SwiftUI
struct ContentView: View {
@State private var count: Int = 0
@State private var age: Int = 0
func incrementStepper(){
print("incrementStepper")
self.age += 1
}
func decrementStepper(){
print("decrementStepper")
self.age -= 1
}
var body: some View {
Form{
VStack {
Stepper(value: self.$count, in: 0...10){
Text("Count")
}
Text("Count : \(self.count)")
// Event 체크하기
Stepper(onIncrement: incrementStepper, onDecrement: decrementStepper){
Text("Age")
}
Text("Age : \(self.age)")
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
'Xcode Study' 카테고리의 다른 글
NavigationView (0) | 2023.10.18 |
---|---|
단추 늘이기, 줄이기 (0) | 2023.10.18 |
e-mail / pw 입력창 (1) | 2023.10.18 |
@State (0) | 2023.10.18 |
MapView (0) | 2023.10.18 |