반응형
1. 조건문
if
if Boolean value {
true statements
} else {
false statements
}
switch
- value 에는 숫자형, 문자형, 튜플도 가능
switch value {
case condition :
statements
case condition :
statements
case condition :
statements
}
2. 반복문 (For Loop, While Loop)
For - in
for-in은 statements의 사항을 ragne 만큼 반복 함.
for item in items {
/* 실행 구문 */
}
For - where
for i in closedRange where i % 2 == 0
While
while, reapet-while 두 구문 모두 condition이 참인 동안 계속해서 반복함.
while condition {
statements
}
Repeat- While
repeat {
statements
} while condition
반응형
'모바일앱 > Swift' 카테고리의 다른 글
21.9월.5주 복습(일) - 플로우 컨트롤 (0) | 2021.10.03 |
---|---|
21.9월.5주 복습(토) - 플로우 컨트롤 (0) | 2021.10.02 |
(중간점검) 문법 공부 중 느낀 점 (0) | 2021.10.02 |
컬렉션 타입 (0) | 2021.10.02 |
플로우컨트롤. (조건문) Switch (0) | 2021.09.29 |
플로우컨트롤. (반복문) for Loop & Where (0) | 2021.09.29 |
플로우컨트롤. (반복문) while, repeat (0) | 2021.09.29 |
Flow control (0) | 2021.09.29 |