Type Method 型メソッド

arrayWithObject:

Creates and returns an array containing a given object. 1つの与えられたオブジェクトを含んでいる配列を作成して返します。

Declaration 宣言

+ (instancetype)arrayWithObject:(ObjectType)anObject;

Parameters パラメータ

anObject

An object. あるオブジェクト。

Return Value 戻り値

An array containing the single element anObject. ただ1つの要素anObjectを含んでいる配列。

Discussion 議論

Alternatively, you can use array literal syntax in Objective-C or Swift to create an array containing a given object: あるいはまた、あなたは配列リテラル構文をObjective-CまたはSwiftにおいて使用して、ある与えられたオブジェクトを含んでいる配列を作成できます:


NSArray *array = @[@"Hello, world!"];

See Also 参照

Creating an Array 配列の作成