Skip to content

Instantly share code, notes, and snippets.

@7gano
Created February 5, 2016 07:03
Show Gist options
  • Save 7gano/3df3b0cbe022f7954456 to your computer and use it in GitHub Desktop.
Save 7gano/3df3b0cbe022f7954456 to your computer and use it in GitHub Desktop.
NSURLComponentsというのができとってなぁ
let a = NSURLQueryItem(name: "a", value: "yes")
let b = NSURLQueryItem(name: "b", value: "no")
let urlComponents = NSURLComponents(string: "https://hoge.com")
urlComponents!.queryItems = [a, b]
urlComponents!.URL
=> "https://hoge.com?a=yes&b=no"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment