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
appendedStringis appended. IftheStringis 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
CFStringAppendCharacters(_:_:_:)CFStringAppendCString(_:_:_:)CFStringAppendFormatAndArguments(_:_:_:_:)CFStringAppendPascalString(_:_:_:)CFStringCapitalize(_:_:)CFStringCreateMutable(_:_:)CFStringCreateMutableCopy(_:_:_:)CFStringCreateMutableWithExternalCharactersNoCopy(_:_:_:_:_:)CFStringDelete(_:_:)CFStringFindAndReplace(_:_:_:_:_:)CFStringFold(_:_:_:)CFStringInsert(_:_:_:)CFStringLowercase(_:_:)CFStringNormalize(_:_:)CFStringPad(_:_:_:_:)