Instance Method インスタンスメソッド

initWithObjects:

Initializes a newly allocated array by placing in it the objects in the argument list. 新しく割り当てられた配列を、引数リストのオブジェクトをそれの中に置くことによって初期化します。

Declaration 宣言

- (instancetype)initWithObjects:(ObjectType)firstObj, ...;

Parameters パラメータ

firstObj

The first object for the array. この配列に対する最初のオブジェクト。

...

A comma-separated list of additional objects, ending with nil. nilで終わる、コンマで区切られた追加オブジェクトのリスト。

Return Value 戻り値

An array initialized to include the objects in the argument list. The returned object might be different than the original receiver. 引数リストの中のオブジェクトを含むように初期化される配列。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。

Discussion 議論

After an immutable array has been initialized in this way, it can’t be modified. 不変の配列がこの方法で初期化され終わった後、それは修正されることができません。

This method is a designated initializer. このメソッドは、指定イニシャライザです。

See Also 参照

Initializing an Array 配列の初期化

Related Documentation 関連文書