Good Morning,
I have looked around here and Google but cant seem to find an answer. I have a plist called SoundsList - at the root level its a dictionary (default), the first item is an Array called Sounds and then its items are all strings.
I want to be able to access the items within the array but cant seem to find how to do this.
let path = NSBundle.mainBundle().pathForResource("SoundsList", ofType: "plist")
let dict = NSDictionary(contentsOfFile: path)
The above code is what I managed to find so far that gives me the path and the dictionary part - I managed to find this code within another post - Swift - Read plist
Regards,
Dave