Skip to content

Instantly share code, notes, and snippets.

@Nicktho
Last active August 29, 2015 14:19
Show Gist options
  • Save Nicktho/bf19350d3b481ea96f89 to your computer and use it in GitHub Desktop.
Save Nicktho/bf19350d3b481ea96f89 to your computer and use it in GitHub Desktop.
fetch() in swift
class fetch {
init(_ url: String, cb: (data: String) -> ()) {
NSURLSession.sharedSession().dataTaskWithURL(NSURL(string: url)!) {(data, response, error) in
cb(data: NSString(data: data, encoding: NSUTF8StringEncoding) as! String)
}.resume()
}
}
fetch("http://www.google.com") {(data: String) in
println(data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment