CFCharacterSetCreateBitmapRepresentation(_:_:)
Creates a new immutable data with the bitmap representation from the given character set.
Declaration
func CFCharacterSetCreateBitmapRepresentation(_ alloc: CFAllocator!, _ theSet: CFCharacterSet!) -> CFData!Parameters
- alloc:
The allocator to use to allocate memory for the new object. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - theSet:
The set from which to create a bitmap representation. Refer to the comments for Cfcharactersetcreatewithbitmaprepresentation(_:_:) for the detailed discussion of the bitmap representation format.
Return Value
A new CFData object containing a bitmap representation of theSet. Ownership follows the The Create Rule.