Skip to content

Instantly share code, notes, and snippets.

@cyborch
Created May 4, 2017 08:56
Show Gist options
  • Save cyborch/227181ea1a84d95ba56b50c63f19914e to your computer and use it in GitHub Desktop.
Save cyborch/227181ea1a84d95ba56b50c63f19914e to your computer and use it in GitHub Desktop.
Convert NSDate to Swift Date
import Foundation
extension Date {
init(date: NSDate) {
self.init(timeIntervalSinceReferenceDate: date.timeIntervalSinceReferenceDate)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment