Type Method 型メソッド

dictionary

Creates an empty dictionary. 空の辞書を作成します。

Declaration 宣言

+ (instancetype)dictionary;

Return Value 戻り値

A new empty dictionary. 新しい空の辞書。

Discussion 議論

This method is declared primarily for use with mutable subclasses of NSDictionary. このメソッドは主としてNSDictionaryの可変サブクラスで使うために宣言されます。

If you don’t want a temporary object, you can also create an empty dictionary using alloc and init. あなたが一時的オブジェクトを望まないならば、あなたはまた空の辞書をallocinitを使って作成できます。

See Also 参照

Creating an Empty Dictionary 空の辞書を作成する