일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AnyObject
- MKMapItem
- UICollectionViewFlowLayout
- UIAlertAction
- weak var
- 러닝타이머
- CLLocationManagerDelegate
- WeatherManager
- Protocol
- Startign Assignments
- App Store Connect
- font book
- CoreLocation
- 한국어 개인정보처리방침
- MKMapViewDelegate
- swift
- weatherKit
- SwiftUI Boolean 값
- dispatchsource
- 러닝기록앱
- addannotation
- Required Reason API
- Xcode
- xcode로 날씨앱 만들기
- 단일 책임원칙
- 클로저의 캡슐화
- Timer
- 서체관리자
- RunningTimer
- 영문 개인정보처리방침
- Today
- Total
VesselWheel
[SwiftUI]switch 문의 개념 본문
import UIKit
/*
switch 문
switch 값(변수,값,수식){
case 값(switch 키워드 옆에 있는 값과 비교함):
명령문
case 값(switch 키워드 옆에 있는 값과 비교함):
명령문
default:
명령문
}
*/
let num1 = 1
switch num1{
case 1:
print("one")
case 2, 3:
print("two or three")
default:
print("others")
}
switch num1{
case let number where number <= 10:
print("number :",number)
default:
print("others")
}
let temperature = -8
switch temperature{
case ..<10:
print("cold")
case 11...20:
print("cool")
case 21...27:
print("warm")
case 28...:
print("hot")
default:
// 아무것도 실행하지 않음
break
}
// fallthrough
let num = 2
switch num{
case 1:
print("one")
case 2:
print("two")
print("둘")
fallthrough
case 3:
print("three")
default:
break
}
let score = 88
var grade = ""
switch (score / 10){
case 9, 10:
grade = "A"
case 8:
grade = "B"
case 7:
grade = "C"
case 6:
grade = "D"
default:
grade = "F"
}
print("당신은 ",grade,"학점입니다")
'Xcode Study' 카테고리의 다른 글
[SwiftUI] webview 사용 코드 (0) | 2023.04.29 |
---|---|
[SwiftUI] cocoapods 설치 및 사용 (0) | 2023.04.29 |
[SwiftUI]if 문의 개념 (0) | 2023.04.26 |
[SwiftUI] 제어문(Control Statement), 조건문(if/switch), 반복문(for in a...b / while) (0) | 2023.04.26 |
[SwiftUI] 사용자 정의 연산자(Custom Operators) (0) | 2023.04.26 |