Contents

CFDateFormatterCreateStringWithAbsoluteTime(_:_:_:)

Returns a string representation of the given absolute time using the specified date formatter.

Declaration

func CFDateFormatterCreateStringWithAbsoluteTime(_ allocator: CFAllocator!, _ formatter: CFDateFormatter!, _ at: CFAbsoluteTime) -> CFString!

Parameters

  • allocator:

    The allocator to use to allocate memory for the new object. Pass NULL or kCFAllocatorDefault to use the current default allocator.

  • formatter:

    The date formatter object that specifies the format of the returned string.

  • at:

    The absolute time for which to generate a string representation.

Return Value

A new string that represents at in the specified format. Returns NULL if there was a problem creating the object. Ownership follows the The Create Rule.

See Also

Creating Strings From Data