CFCharacterSetCreateWithCharactersInString(_:_:)
Creates a new character set with the values in the given string.
Declaration
func CFCharacterSetCreateWithCharactersInString(_ alloc: CFAllocator!, _ theString: CFString!) -> CFCharacterSet!Parameters
- alloc:
The allocator to use to allocate memory for the new object. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - theString:
A string containing the characters for the new set.
Return Value
A new character set containing the characters from theString. Ownership follows the The Create Rule.