CFBundleCopyLocalizationsForURL(_:)
Returns an array containing the localizations for a bundle or executable at a particular location.
Declaration
func CFBundleCopyLocalizationsForURL(_ url: CFURL!) -> CFArray!Parameters
- url:
The location of a bundle’s localizations.
Return Value
An array containing the localizations available at url. Ownership follows the The Create Rule.
Discussion
For a directory URL, this is equivalent to calling the CFBundleCopyBundleLocalizations(_:) function on the corresponding bundle. For a plain file URL representing an unbundled application, this will attempt to determine its localizations using the kCFBundleLocalizationsKey and kCFBundleDevelopmentRegionKey keys in the dictionary returned by CFBundleCopyInfoDictionaryForURL(_:), or a vers resource if those are not present.