Quickly obtains a pointer to the contents of a string as a buffer of Unicode characters.
SDKs
- iOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Framework
- Core Foundation
Declaration
func CFStringGetCharactersPtr(_ theString: CFString!) -> Unsafe Pointer<Uni Char>!
Parameters
theString
The string whose contents you wish to access.
Return Value
A pointer to a buffer of Unicode character, or NULL
if the internal storage of the
does not allow this to be returned efficiently.
Discussion
This function either returns the requested pointer immediately, with no memory allocations and no copying, or it returns NULL
. If the latter is the result, call an alternative function such as CFString
function to extract the characters.
Whether or not this function returns a valid pointer or NULL
depends on many factors, all of which depend on how the string was created and its properties. In addition, the function result might change between different releases and on different platforms. So do not count on receiving a non-NULL
result from this function under any circumstances (except when the object is created with CFString
).