var description: String
var descriptionInStringsFileFormat : String
.strings
file format.
辞書の内容を表す文字列、.strings
ファイルフォーマットとして書式設定されます。
func description(withLocale : Any?, indent: Int) -> String
var customMirror : Mirror
Availability 有効性
Technology
func description(withLocale locale: Any?) -> String
locale
An object that specifies options used for formatting each of the dictionary’s keys and values; pass nil
if you don’t want them formatted.
辞書の持つキーと値のそれぞれを書式設定するために使うオプションを指定するオブジェクト;それらが書式設定されることを望まないならばnil
を渡してください。
On iOS and macOS 10.5 and later, either an instance of NSDictionary
or an NSLocale
object may be used for locale
. In OS X v10.4 and earlier it must be an instance of NSDictionary
.
iOSおよびmacOS 10.5以降では、NSDictionary
のインスタンスまたはNSLocale
オブジェクトのどちらかがlocale
に対して渡されるかもしれません。OS X v10.4以前ではそれはNSDictionary
のインスタンスでなければなりません。
For a description of how locale
is applied to each element in the dictionary, see description(with
.
どのようにlocale
がその辞書の各要素に適用されるかについて、description(with
を見てください。
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.
辞書の中の各キーがcompare:
に応答するならば、登録項目はキーによる昇順でリストされます、そうでなければ登録項目がリストされる順番は未定義です。
var description: String
var descriptionInStringsFileFormat : String
.strings
file format.
辞書の内容を表す文字列、.strings
ファイルフォーマットとして書式設定されます。
func description(withLocale : Any?, indent: Int) -> String
var customMirror : Mirror