var description: String
func description(withLocale : Any?) -> String
Availability 有効性
Technology
locale
An NSLocale
object or an NSDictionary
object that specifies options used for formatting each of the array’s elements (where recognized). Specify nil
if you don’t want the elements formatted.
NSLocale
オブジェクトまたはNSDictionary
オブジェクト、それは配列の持つ要素それぞれを書式設定するために使われるオプションを指定します(認める場合は)。nil
をあなたが書式設定された要素を望まないならば指定してください。
level
A level of indent, to make the output more readable: set level
to 0
to use four spaces to indent, or 1
to indent the output with a tab character.
字下げのレベル、出力をより読みやすくするために:level
を0
に設定することは4つの空白を字下げに使います、また1
では出力を1つのタブ文字で字下げします。
A string that represents the contents of the array, formatted as a property list. 配列の内容を表す文字列、プロパティリストとして書式設定されます。
The returned NSString
object contains the string representations of each of the array’s elements, in order, from first to last. To obtain the string representation of a given element, description(with
proceeds as follows:
返されるNSString
オブジェクトは、配列の持つ要素のそれぞれの文字列表現を含みます、順番に、最初から最後へと。ある与えられた要素の文字列表現を取得するには、description(with
は以下のように続行します:
If the element is an NSString
object, it is used as is.
その要素がNSString
オブシェクトならば、それはそのまま使われます。
If the element responds to description(with
, that method is invoked to obtain the element’s string representation.
その要素がdescription(with
に応答するならば、そのメソッドが発動されることで、その要素の持つ文字列表現を入手します。
If the element responds to description(with
, that method is invoked to obtain the element’s string representation.
その要素がdescription(with
に応答するならば、そのメソッドが発動されることで、その要素の持つ文字列表現を入手します。
If none of the above conditions is met, the element’s string representation is obtained by invoking its description
method.
上記の条件のどれにも合わないならば、その要素の持つ文字列表現は、description
メソッドを発動することによって入手されます。
var description: String
func description(withLocale : Any?) -> String