var description: String
var descriptionInStringsFileFormat : String
.strings
file format.
辞書の内容を表す文字列、.strings
ファイルフォーマットとして書式設定されます。
func description(withLocale : Any?) -> String
var customMirror : Mirror
Availability 有効性
Technology
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
のインスタンスでなければなりません。
level
Specifies a level of indentation, to make the output more readable: the indentation is (4 spaces) * level
.
字下げの水準を指定します、出力をより読みやすくするため:字下げは、 (4つの空白) * level
です。
A string object that represents the contents of the dictionary, formatted as a property list. 辞書の内容を表す文字列オブジェクト、プロパティリストとして書式設定されます。
The returned NSString
object contains the string representations of each of the dictionary’s entries. description(with
obtains the string representation of a given key or value as follows:
返されるNSString
オブジェクトは、辞書の持つ登録項目のそれぞれの文字列表現を含みます。description(with
は、与えられたキーまたは値の文字列表現を取得します、以下のように:
If the object is an NSString
object, it is used as is.
オブジェクトがNSString
オブジェクトならば、それがそのままで使われます。
If the object responds to description
, that method is invoked to obtain the object’s string representation.
オブジェクトがdescription
に応答するならば、そのメソッドが発動されて、オブジェクトの文字列表現を取得します。
If the object responds to description
, that method is invoked to obtain the object’s string representation.
オブジェクトがdescription
に応答するならば、そのメソッドが発動されて、オブジェクトの文字列表現を取得します。
If none of the above conditions is met, the object’s string representation is obtained by through its description
property.
上の条件のどれにも遭遇しないならば、オブジェクトの持つ文字列表現はそれのdescription
プロパティを通して取得されます。
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?) -> String
var customMirror : Mirror