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 trialkevin11
2,535 PointsFile from directory challenge?
I feel like I am really close to completing this challenge but I can't seem to complete it. Here is the challenge:
Given a resource named "CrazyInformation.plist" located in the main application directory, first retrieve the path to this resource and assign the string to a constant named plistPath. Once you have the plistPath, create an instance of NSDictionary containing the contents of the plist.
I got the first part of the challenge but there is an error for the second part. I feel like I am missing something. Please help me. Here is my code:
import Foundation
// Add your code below
let plistPath = NSBundle.mainBundle().pathForResource("CrazyInformation", ofType: "plist")
let dictionary = NSDictionary(contentsOfFile: "plist")
Chris Howie
13,216 PointsChris Howie
13,216 PointsFirst part of the challenge is: '''if let plistPath = NSBundle.mainBundle().pathForResource("CrazyInformation", ofType: "plist") {
}'''
Second Part is:
'''if let plistPath = NSBundle.mainBundle().pathForResource("CrazyInformation", ofType: "plist") { let currentCrazyInformation = NSDictionary(contentsOfFile: plistPath) }'''