Skip to content

Instantly share code, notes, and snippets.

@MartinJNash
Last active August 29, 2015 14:04
Show Gist options
  • Save MartinJNash/8cb282ddf90e374dae31 to your computer and use it in GitHub Desktop.
Save MartinJNash/8cb282ddf90e374dae31 to your computer and use it in GitHub Desktop.
Swift Date & String Methods
extension NSString {
func toDateWithFormatter(dateFormatter: NSDateFormatter) -> NSDate? {
return dateFormatter.dateFromString(self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment