Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save feighter09/67b64757b7ac6f001610b48e69a21874 to your computer and use it in GitHub Desktop.
Save feighter09/67b64757b7ac6f001610b48e69a21874 to your computer and use it in GitHub Desktop.
import Alamofire
import SwiftyJSON
import UIKit
class ViewController: UIViewController {
convenience init() { self.init(nibName: "ViewController", bundle: nil) }
@IBOutlet weak var label: UILabel!
var networkClient: NetworkClientType = NetworkClient()
override func viewDidLoad()
{
super.viewDidLoad()
networkClient.fetchUsername { username, error in
if let username = username {
self.label.text = "Username: " + username
}
else {
self.label.text = "Request failed"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment