I am in the following situation I have a request in Alamofire that returns me a json that may have data or not (usually has but might not). I want to handle when the response.result.value returns optional ([]).
I tried this but it did not work
let json = response.result.value
print(json)//retorna Optional[]
if json == nil {
//aviso o usuario que nao tenho os dados pra mostrar
}
else{
//trabalho com os dados retornados
if let json = json {
for JSON in json {
//for para percorrer o objeto que me foi retornado
}
}