Returns one or more localizations from the specified list that a bundle object would use to locate resources for the current user.
SDKs
- iOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Framework
- Foundation
Declaration
Parameters
localizationsArray
An array of
NSString
objects, 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 localizations
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.