getHour(_:minute:second:nanosecond:from:)
Returns by reference the hour, minute, second, and nanosecond component values for a given date.
Declaration
func getHour(_ hourValuePointer: UnsafeMutablePointer<Int>?, minute minuteValuePointer: UnsafeMutablePointer<Int>?, second secondValuePointer: UnsafeMutablePointer<Int>?, nanosecond nanosecondValuePointer: UnsafeMutablePointer<Int>?, from date: Date)Parameters
- hourValuePointer:
Upon return, contains the hour of the given date.
- minuteValuePointer:
Upon return, contains the minute of the given date.
- secondValuePointer:
Upon return, contains the second of the given date.
- nanosecondValuePointer:
Upon return, contains the nanosecond of the given date.
- date:
The date for which to perform the calculation.
Discussion
Pass NULL to ignore any individual component parameter.
This is a convenience method for getting the time components of a given date using components(_:from:)