Skip to content

Instantly share code, notes, and snippets.

@naoty
Last active August 29, 2015 14:06
Show Gist options
  • Save naoty/aa046dad0c92d3a7221f to your computer and use it in GitHub Desktop.
Save naoty/aa046dad0c92d3a7221f to your computer and use it in GitHub Desktop.
mport Foundation
let components = NSURLComponents()
components.scheme = "http"
components.host = "example.com"
components.path = "/hoge"
components.query = "q=keyword"
println(components.URL) //=> "http://example.com/hoge?q=keyword"
@naoty
Copy link
Author

naoty commented Sep 3, 2014

iOS8以降でcomponents.stringでStringもとれるようになる。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment