Skip to content

Instantly share code, notes, and snippets.

@MaatheusGois
Last active May 21, 2019 03:39
Show Gist options
  • Save MaatheusGois/4c221367bfd3da725f68304a7f77d43d to your computer and use it in GitHub Desktop.
Save MaatheusGois/4c221367bfd3da725f68304a7f77d43d to your computer and use it in GitHub Desktop.
//Chamando a funcão POST
postRequest(url: url, params: params){
(result, err) in
if let res:Bool = (result?.values.first as? Bool) {
if(res) {
//Aqui res podera assumir dois valores, true ou false
print("sua requisicao foi realizada com sucesso")
} else {
print("a requisicao nao funcionou")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment