if let name = property["Name"] as? String,
let latitude = property["Latitude"] as? NSNumber,
let longitude = property["Longitude"] as? NSNumber,
let image = property["Image"] as? String {
// To learn how to read data from plist file, check out our Saving Data
// in iOS Video Tutorial series.
// Code goes here
}
When I converted my code to current swift version, I am facing 'Type any has no subscript error'. I am fairly new to swift and stuck at this point. Saw other related posts, but no where I could find a solution for this. Please help.