[Swift] 반복문

임클·2023년 1월 3일
0

Swift

목록 보기
6/37
post-thumbnail
post-custom-banner

반복문

for, while, ForEach... 등등 여러개 존재
그 중 ForEach 예시는 다음과 같다.

let alpabets = ["a", "b" ,"c", "d"]
...
// 주로 사용 하는 방식
ForEach(alpabets, id : \.self) { alpabet in Text(alpabet)}

ForEach ( A , id : B) {C in D}
A : 반복에 쓰일 내용
B : 고유값 (배열에서는 index를 의미함)
C : 반복하는 동안의 변수명
D : code

//위험 부담 있는 반복문 앱이 죽을 수 있음.
// 0이상 4 미만 반복
ForEach ( 0 ..<4) { 
	number in Text(alpabets[number])
}
// "a" "b" "c" "d" 출력
ForEach(0..<4){
	num in
    Text("Number is \(num)")
}ForEach(0..<4){
    Text("Number is \($0)")
}
같다.
profile
iOS를 공부하는 임클입니다.
post-custom-banner

0개의 댓글