Skip to content

Instantly share code, notes, and snippets.

@jarsen
Last active August 29, 2015 14:02
Show Gist options
  • Save jarsen/9a22cea2f52aeac8be74 to your computer and use it in GitHub Desktop.
Save jarsen/9a22cea2f52aeac8be74 to your computer and use it in GitHub Desktop.
Add string literal to NSURL
extension NSURL : StringLiteralConvertible {
public class func convertFromStringLiteral(value: String) -> Self {
return self(string: value)
}
public class func convertFromExtendedGraphemeClusterLiteral(value: String) -> Self {
return self(string: value)
}
}
let url : NSURL = "http://apple.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment