-
Notifications
You must be signed in to change notification settings - Fork 3
Advanced Swift
Kevin Leong edited this page Oct 31, 2016
·
5 revisions
Alamofire.request(.GET, PhotosViewController.PHOTOS_URL)
.responseJSON { response in
var slugs = [String]()
if let json = response.result.value {
if let posts = json["response"]!!["posts"] as? [[String: AnyObject]] {
for post in posts {
if let slug = post["slug"] as? String {
slugs.append(slug)
}
}
}
}
print(slugs)
}
This is an array of dictionaries.
Each dictionary contains String
keys that map to AnyObject
values.