Enumerated Types #2
Learn to write extensions and iterate over Enums.
We'll cover the following...
In the last lesson, we learned how to use switch
blocks for Enums. In this lesson, you will learn to iterate over members of Weather
enumeration.
Iterating
Let’s revisit the Enum Weather
:
enum Weather {
sunny,
cloudy,
rainy,
}
...