출처
앱 12개를 만들며 배우는 Swift4 & iOS11 아이폰 iOS 개발 강좌
위치
iBooks > swift 5 검색
Control Flow 부분
내용
swift는 switch가 강력함!
예제
let age = 7
// if
if age < 3 {
print("Baby")
} else if age>=3 && age<20 {
print("Child")
} else {
print("Adult")
}
// switch
switch age {
case 0, 1, 2 :
print("Baby")
case 3...19 :
print("Child")
default :
print("Adult")
}
'iOS' 카테고리의 다른 글
[Swift] Enumeration (0) | 2020.07.03 |
---|---|
[Swift] Function (0) | 2020.07.03 |
[Swift] For, While 문 (0) | 2020.07.03 |
[Swift] Basic Operator (기본 연산자) (0) | 2020.07.03 |
[Swift] Collection (Array, Set, Dictionary) (0) | 2020.07.03 |
댓글