I\'m trying to get the JSON from a website and parse it before putting it inside of an iOS view.
Here\'s my code;
func startConnection(){ le
If the original JSON is an array, try this.
func parseJSON(inputData: NSData) -> Array{ var error: NSError? var boardsDictionary = NSJSONSerialization.JSONObjectWithData(inputData, options: NSJSONReadingOptions.MutableContainers, error: &error) as Array return boardsDictionary }