Skip to content

Instantly share code, notes, and snippets.

@s4cha
Last active October 17, 2016 16:36
Show Gist options
  • Select an option

  • Save s4cha/94b6d6265cebb10c3ae28c0f1cdb51cd to your computer and use it in GitHub Desktop.

Select an option

Save s4cha/94b6d6265cebb10c3ae28c0f1cdb51cd to your computer and use it in GitHub Desktop.
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
api.getUsers().then { users in
for u in users {
print(u.username)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment