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
.
あなたが一時的オブジェクトを望まないならば、あなたはまた空の辞書をalloc
とinit
を使って作成できます。
See Also
参照
Creating an Empty Dictionary
空の辞書を作成する
- init
Initializes a newly allocated dictionary.
新しく割り当てられた辞書を初期化します。
Related Documentation
関連文書