Skip to content

Instantly share code, notes, and snippets.

@Gernot
Created April 1, 2015 16:12
Show Gist options
  • Save Gernot/37e9b8e52061852cd7be to your computer and use it in GitHub Desktop.
Save Gernot/37e9b8e52061852cd7be to your computer and use it in GitHub Desktop.
public struct Time {
init(date: NSDate) {
NSCalendar.currentCalendar().getHour(&hours, minute: &minutes, second: &seconds, nanosecond: &nanoseconds, fromDate: date)
}
private(set) public var hours: Int = 0
private(set) public var minutes: Int = 0
private(set) public var seconds: Int = 0
private(set) public var nanoseconds: Int = 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment