- init
Initializes a newly allocated array.
新しく割り当てられた配列を初期化します
- initWithArray:copyItems:
Initializes a newly allocated array using
anArray
as the source of data objects for the array.
新しく割り当てられた配列を、anArray
をその配列のデータオブジェクトのソースとして使って初期化します。
- initWithContentsOfFile:
Initializes a newly allocated array with the contents of the file specified by a given path.
新しく割り当てられた配列を、与えられたパスによって指定されるファイルの内容で初期化します。
- initWithContentsOfURL:
Initializes a newly allocated array with the contents of the location specified by a given URL.
新しく割り当てられた配列を、与えられたURLによって指定された位置での内容で初期化します。
- initWithObjects:
Initializes a newly allocated array by placing in it the objects in the argument list.
新しく割り当てられた配列を、引数リストのオブジェクトをそれの中に置くことによって初期化します。
- initWithObjects:count:
Initializes a newly allocated array to include a given number of objects from a given C array.
新しく割り当てられた配列を初期化して、与えられた数のオブジェクトをある与えられたC配列から含めるようにします。