Back to course

Swift Collections: Arrays

development ios 0 to hero full course 2026

Storing Ordered Data with Arrays

Arrays allow you to store multiple values in a specific order.

Key Methods:

  • .append(): Add an item.
  • .count: Get array size.
  • .remove(at:): Delete an item.
  • Zero-based indexing.