Skip to content

Instantly share code, notes, and snippets.

@stremsdoerfer
Created January 12, 2017 05:24
Show Gist options
  • Save stremsdoerfer/f8ccf9ca2cc2bd97ef4ca5a376565d9a to your computer and use it in GitHub Desktop.
Save stremsdoerfer/f8ccf9ca2cc2bd97ef4ca5a376565d9a to your computer and use it in GitHub Desktop.
Alamofire.request("https://yourapi.com/login", method: .post, parameters: ["email":"test@gmail.com","password":"1234"]).responseJSON { (response:DataResponse<Any>) in
if response.response?.statusCode == 200 {
self.navigationController?.pushViewController(NewViewController(), animated: true)
}else{
//Show alert
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment