Back to course

Loops: For-In and While

development ios 0 to hero full course 2026

Repeating Tasks with Loops

  • for item in collection: Iterate over arrays or ranges.
  • while condition: Repeat until logic changes.
  • Understanding 1...5 (closed range) and 1..<5 (half-open range).