init(objects: UnsafePointer<AnyObject>, count: Int)
Creates and returns an array that includes a given number of objects from a given C array.
指定された数のオブジェクトをある与えられたC配列から含む配列を作成して返します。
Availability 有効性
Technology
convenience init(object anObject: Any)
anObject
An object. あるオブジェクト。
An array containing the single element an
.
ただ1つの要素an
を含んでいる配列。
Alternatively, you can use array literal syntax in Objective-C or Swift to create an array containing a given object: あるいはまた、あなたは配列リテラル構文をObjective-CまたはSwiftにおいて使用して、ある与えられたオブジェクトを含んでいる配列を作成できます:
init(objects: UnsafePointer<AnyObject>, count: Int)
+ array
+ arrayWithObjects: