CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes(_:_:_:)
Returns a canonical locale identifier from given language and region codes.
Declaration
func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes(_ allocator: CFAllocator!, _ lcode: LangCode, _ rcode: RegionCode) -> CFLocaleIdentifier!Parameters
- allocator:
The allocator to use to allocate memory for the new object. Pass
NULLor kCFAllocatorDefault to use the current default allocator. - lcode:
A macOS language code.
- rcode:
A macOS region code.
Return Value
A canonical locale identifier created by mapping lcode and rcode to a locale. Returns NULL if there was a problem creating the object. Ownership follows the The Create Rule.
See Also
Getting and Creating Locale Identifiers
CFLocaleCreateCanonicalLanguageIdentifierFromString(_:_:)CFLocaleCreateCanonicalLocaleIdentifierFromString(_:_:)CFLocaleCreateComponentsFromLocaleIdentifier(_:_:)CFLocaleCreateLocaleIdentifierFromComponents(_:_:)CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(_:_:)CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier(_:)