Back to course

Enums and Switch Statements

development ios 0 to hero full course 2026

Defining Choices with Enums

Enums allow you to define a group of related values.

swift enum Weather { case sunny, cloudy, rainy } let today = Weather.sunny

switch today { case .sunny: print("Wear sunglasses") default: print("Stay home") }