Created
May 4, 2017 08:56
-
-
Save cyborch/227181ea1a84d95ba56b50c63f19914e to your computer and use it in GitHub Desktop.
Convert NSDate to Swift Date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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