I get JSON of the following format:
{ "http://.randomSiteName.com" : [ "key1 = value1;", "key2 = value2;" ] } How to get the values (value1 ... 2), the keys (key1 ... 2) and the site itself from the object? I tried through SwiftyJSON, but there either I catch nil, or the empty values returned by the library in case of unsuccessful parsing.
Is the presentation JSON format correct, maybe because of this it’s impossible to parse through SwifyJSON?