Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Enumerations and Optionals in Swift Introduction to Enumerations Modeling Finite Data

Is the array needed?

In the first video Pasan creates an array called week. I just want to make that I am understanding this correctly? That array is not needed, is it? The rest of the code would work the same without that array?

1 Answer

You are correct: The week array is not needed for the enum. Enums are a kind of custom type you create to assist your programming. It helps you out with syntax highlighting and auto completion. If you take a look at the Swift documentation they have even more functionality and will make your code cleaner.