Contents

CFStringAppend(_:_:)

Appends the characters of a string to those of a CFMutableString object.

Declaration

func CFStringAppend(_ theString: CFMutableString!, _ appendedString: CFString!)

Parameters

  • theString:

    The string to which appendedString is appended. If theString is not a CFMutableString object, an assertion is raised.

  • appendedString:

    The string to append.

Discussion

This function reallocates the backing store of theString to accommodate the new length.

See Also

CFMutableString Miscellaneous Functions