Skip to content
Kevin Leong edited this page Oct 31, 2016 · 5 revisions

Advanced Swift

Swift Questions

What does !! do?

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)
}

What is as [[String: AnyObject]] for?

This is an array of dictionaries.

Each dictionary contains String keys that map to AnyObject values.

Clone this wiki locally