Last active
May 21, 2019 03:39
-
-
Save MaatheusGois/4c221367bfd3da725f68304a7f77d43d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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