Skip to content

Instantly share code, notes, and snippets.

@matthewcheok
Last active August 29, 2015 14:24
Show Gist options
  • Save matthewcheok/b673c6da717e97ec95db to your computer and use it in GitHub Desktop.
Save matthewcheok/b673c6da717e97ec95db to your computer and use it in GitHub Desktop.
NSURL with Operators
import Foundation
func +(lhs: NSURL, rhs:String) -> NSURL {
return lhs.URLByAppendingPathComponent(rhs)
}
let url = NSURL(string: "http://google.com")!
url
url + "pages"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment