init(array: [Any])
Initializes a newly allocated array by placing in it the objects contained in a given array.
新しく割り当てされた配列を、与えられた配列の中に含まれるオブジェクトをそれの中に置くことによって初期化します。
init(array: [Any], copyItems : Bool)
Initializes a newly allocated array using
anArray
as the source of data objects for the array.
新しく割り当てられた配列を、anArray
をその配列のデータオブジェクトのソースとして使って初期化します。
init?(contentsOfFile : String)
Initializes a newly allocated array with the contents of the file specified by a given path.
新しく割り当てられた配列を、与えられたパスによって指定されるファイルの内容で初期化します。
init?(contentsOf : URL)
Initializes a newly allocated array with the contents of the location specified by a given URL.
新しく割り当てられた配列を、与えられたURLによって指定された位置での内容で初期化します。
init(objects: UnsafePointer<AnyObject>?, count: Int)
Initializes a newly allocated array to include a given number of objects from a given C array.
新しく割り当てられた配列を初期化して、与えられた数のオブジェクトをある与えられたC配列から含めるようにします。