August 22, 2014 Calling APIs and Parsing JSON with Swift

Parsing JSON with Swift is not a happy task. One of the first things I wanted to do in a playground was call the Topcoder API and start playing with the returned challenge data.

Unfortunately parsing JSON in data is almost akin to chewing glass right now (hopefully it will get better). You would think that since working with JSON is such a fundamental task nowadays, that it would be much easier, but no. I poked around for awhile and found David Owens’ blog on JSON parsing but it was much more time than I wanted to invest in. I think JSON parsing should be simple and I think I finally found something that fits the bill.

I stumbled across the SwiftyJSON repo and it looks promising. It was much easier for me to grok and include in a Playground to test with.

So here a little snippet (thanks to Jameson Quave!) on how to call the Topcoder API from Playground. Notice there’s a spot in the code below where you simply paste in the SwiftyJSON code to use it.

The first thing we need to do is import the XCPlayground framework and add XCPSetExecutionShouldContinueIndefinitely(). This allows for asynchronous operations so that Playground can return the results from the API call after all top levels commands have executed and the process normally ends.

Then, of course, we need to paste the contents of the SwiftyJSON source into our Playground so we get all the JSON-parsing goodness.

The next few lines of code just setup our API call to retrieve our challenges JSON payload. We create the task on line 14 and then kick it off on line 42 with task.resume().

The meat of the Playground is the last parameter of dataTaskWithURL which is a closure that gets called upon completion of the request. Then we check for errors and parse the JSON result into a NSDictionary.

Here’s where we start using SwiftyJSON, casting the JSON result as it’s JSONValue. Now we can access it as a familiar associative array to find the nested values we need. Viola!


wprice

Powered by Topcoder


categories & Tags


UNLEASH THE GIG ECONOMY. START A PROJECT OR TALK TO SALES
Close

Sign up for the Topcoder Monthly Customer Newsletter

Thank you

Your information has been successfully received

You will be redirected in 10 seconds