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 Swift Functions and Optionals Parameters and Tuples Tuples

Hello, I cannot set a variable "Result" equal to one of two elements in a tuple.

I've been struggling to get this simple result back. I cannot seem to decompose one of two tuple elements to the variable result.

1 Answer

Ben Griffith
Ben Griffith
5,808 Points

You can access both values using dot notation and it's index

// The tuple
let error = (404, "Page not found")

// Access the first value with .0
let errorInt = error.0

// Access the second value .1
let errorDescription = error.1

The index always starts on a 0, just like an array.

Hope this helps.