Contents

ABMultiValueCopyIdentifierAtIndex(_:_:)

Returns the identifier at the given index.

Declaration

func ABMultiValueCopyIdentifierAtIndex(_ multiValue: ABMultiValueRef!, _ index: CFIndex) -> Unmanaged<CFString>!

Parameters

  • multiValue:

    The multi-value list that you wish to access.

  • index:

    The index of the identifier you wish to obtain. If this parameter is out of bounds, this function raises an exception.

Return Value

The identifier at index in multiValue.You are responsible for releasing this object.

Discussion

Each value in a multi-value list must be the same type, andhas an associated pre-defined or user-defined label, and uniqueidentifier. Use the ABMultiValueCopyLabelAtIndex(_:_:) functionto get a label, and the ABMultiValueCopyValueAtIndex(_:_:)functionto get a value.

See Also

Multi Values