description(withLocale:)
Returns a string object that represents the contents of the dictionary, formatted as a property list.
Declaration
func description(withLocale locale: Any?) -> StringParameters
- locale:
An object that specifies options used for formatting each of the dictionary’s keys and values; pass
nilif you don’t want them formatted.On iOS and macOS 10.5 and later, either an instance of
NSDictionaryor anNSLocaleobject may be used forlocale. In OS X v10.4 and earlier it must be an instance ofNSDictionary.
Discussion
For a description of how locale is applied to each element in the dictionary, see description(withLocale:indent:).
If each key in the dictionary responds to compare:, the entries are listed in ascending order by key, otherwise the order in which the entries are listed is undefined.