Type Method 型メソッド

listDescriptor

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

Declaration 宣言

+ (NSAppleEventDescriptor *)listDescriptor;

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 insertDescriptor:atIndex: or remove them with removeDescriptorAtIndex:. リスト記述子は、それのデータがひとつ以上の記述子から成る記述子です。あなたは、そのリストに項目を加えることがinsertDescriptor:atIndex:を呼び出すことによって、またremoveDescriptorAtIndex:でそれらを削除することができます。

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

See Also 参照

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