CFDateCreate(_:_:)
Creates a CFDate object given an absolute time.
Declaration
func CFDateCreate(_ allocator: CFAllocator!, _ at: CFAbsoluteTime) -> CFDate!Parameters
- allocator:
The allocator to use to allocate memory for the new object. Pass
NULLor Kcfallocatordefault to use the current default allocator. - at:
The absolute time to convert to a CFDate object.
Return Value
A date object that represents the absolute time at. The caller is responsible for releasing the CFDate object using CFRelease.
Discussion
CFDate objects must always be created using absolute time. Time intervals are not supported.