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 trialPaul Je
4,435 PointsHelp! Not sure how the syntax must be formatted in order to assign from nested array
Unsure; it says that I should be retrieving property 0 on nested array which in my case is castInMovies after combining it with movieTitle. There are no other error messages otherwise - any help would be appreciated!
let movieDictionary = ["Spectre": ["cast": ["Daniel Craig", "Christoph Waltz", "LÊa Seydoux", "Ralph Fiennes", "Monica Bellucci", "Naomie Harris"]]]
var leadActor: String = ""
// Enter code below
if let movieTitle = movieDictionary["Spectre"],
let castInMovies = movieTitle["cast"],
var leadActor: String = castInMovies[0] {
print(leadActor)
} else {
print("Whoops, this is not Daniel Craig! Maybe somebody else on this list")
}
1 Answer
Cindy Lea
Courses Plus Student 6,497 PointsTry this:
let movieDictionary = ["Spectre": ["cast": ["Daniel Craig", "Christoph Waltz", "LÊa Seydoux", "Ralph Fiennes", "Monica Bellucci", "Naomie Harris"]]]
var leadActor: String = ""
// Enter code below
if let movie = movieDictionary["Spectre"] { if let cast = movie["cast"] { leadActor = cast[0] }
}
Parvinder Grewal
3,678 PointsParvinder Grewal
3,678 PointsCindy Lea , thanks for your answer. I was having trouble on how to assign position 0 after the unpacking.