Type Method 型メソッド

list()

Creates and initializes an empty list descriptor. 空のリスト記述子を作成して初期化します。

Declaration 宣言

class func list() -> NSAppleEventDescriptor

Return Value 戻り値

An empty list descriptor, or nil if an error occurs. 空のリスト記述子、またはエラーが起こるならばnil

Discussion 議論

A list descriptor is a descriptor whose data consists of one or more descriptors. You can add items to the list by calling insert(_:at:) or remove them with remove(at:). リスト記述子は、それのデータがひとつ以上の記述子から成る記述子です。あなたは、そのリストに項目を加えることがinsert(_:at:)を呼び出すことによって、またremove(at:)でそれらを除去することができます。

Invoking this method is equivalent to allocating an instance of NSAppleEventDescriptor and invoking init(listDescriptor:). このメソッドを発動することは、NSAppleEventDescriptorのインスタンスを割り当てしてinit(listDescriptor:)を発動することと等価です。

See Also 参照

Creating and Initializing Descriptors 記述子の作成と初期化