Initializer

init(object:)

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

Declaration 宣言

convenience init(object anObject: Any)

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において使用して、ある与えられたオブジェクトを含んでいる配列を作成できます:


let array: NSArray = ["Hello, world!"]

See Also 参照

Creating an Array 配列の作成

Related Documentation 関連文書