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 trialivanzdane
6,541 PointsOptional unwrapping not working
When I run this line in a playground: title = playlistDictonary["title"] as String!
it returns: {Some "Runner's Rampage"}
To get the actual value, I need to unwrap the optional again on another line. What is the point of putting a "!" after String in the first line if it doesn't unwrap the optional?
1 Answer
Rasmus Rønholt
Courses Plus Student 17,358 PointsIn my opinion it is pointless... So either define none optional properties or set them with optionals... Swift has changed syntax in this case, but I would set the title property with the following, which will handle cases where the data returned is NOT a string, without crashing...
title = playlistDictonary["title"] as? String