I have this JSON file:
var Point :
[
{
"id": 1,
"name": "A",
"LastUpdate": 1468011600,
"position": [36.8656974, 10.1687314]},
{
"id": 1,
"name": "A",
"LastUpdate": 1468397003,
"position": [36.9009882, 10.3009531]
},
{
"id": 1,
"name": "A",
"LastUpdate": 1467590490,
"position": [37.1691357, 10.0349865]
}
]
and I need to read this data in my viewController, I tried to work with SwiftyJSON but I failed. PS: I code with swift and not objective-C Any solutions?