При декодировании ответа JSON от webservice я получаю сообщение об ошибке:
Could not cast value of type '__NSArrayM' (0x34df0900) to 'NSDictionary'
Я попробовал так много решений, найденных в StackOverflow, но ничего не работает.
Мой код:
let jsonData:NSDictionary = (NSJSONSerialization.JSONObjectWithData(urlData!, options:NSJSONReadingOptions.MutableContainers , error: &error) as? NSDictionary)!
let success:NSInteger = jsonData.valueForKey("success") as! NSInteger
Ответ от веб-службы:
[
{
"id": "1",
"title": "bmw",
"price": "500.00",
"description": "330",
"addedDate": "2015-05-18 00:00:00",
"user_id": "1",
"user_name": "CANOVAS",
"user_zipCode": "32767",
"category_id": "1",
"category_label": "VEHICULES",
"subcategory_id": "2",
"subcategory_label": "Motos",
"bdd": {}
}
]
Спасибо за помощь