반복문
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)")
}
같다.