일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 한국어 개인정보처리방침
- xcode로 날씨앱 만들기
- SwiftUI Boolean 값
- AnyObject
- UICollectionViewFlowLayout
- 서체관리자
- MKMapItem
- addannotation
- 단일 책임원칙
- RunningTimer
- CoreLocation
- WeatherManager
- Startign Assignments
- weatherKit
- swift
- Xcode
- weak var
- MKMapViewDelegate
- CLLocationManagerDelegate
- dispatchsource
- font book
- UIAlertAction
- App Store Connect
- 영문 개인정보처리방침
- 클로저의 캡슐화
- Timer
- Required Reason API
- Protocol
- 러닝기록앱
- 러닝타이머
- 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 |