preferredLocalizations(from:)
Returns one or more localizations from the specified list that a bundle object would use to locate resources for the current user.
Declaration
class func preferredLocalizations(from localizationsArray: [String]) -> [String]Parameters
- localizationsArray:
An array of
NSStringobjects, each of which specifies the language ID for a localization that the bundle supports.
Return Value
An array of NSString objects containing the preferred localizations. These strings are ordered in the array according to the user’s language preferences and are taken from the strings in the localizationsArray parameter.
Discussion
This method does not return all localizations in preference order but only those from which NSBundle would get localized content, typically either a single non-region-specific localization or a region-specific localization followed by a corresponding non-region-specific localization as a fallback.
However, clients who want all localizations in preference order can make repeated calls, each time taking the top localizations out of the list of localizations passed in.