Skip to content

Instantly share code, notes, and snippets.

@akshitzaveri
Created May 25, 2020 07:30
Show Gist options
  • Save akshitzaveri/f44f905e98f9d994a5e024911463e784 to your computer and use it in GitHub Desktop.
Save akshitzaveri/f44f905e98f9d994a5e024911463e784 to your computer and use it in GitHub Desktop.
let url = URL(string: "http://jsonplaceholder.typicode.com/posts")!
AF.request(url)
.responseDecodable(of: [Post].self) { (response) in
guard let posts = response.value else { return completion([]) }
completion(posts)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment