init()
Initializes a newly allocated array.
新しく割り当てられた配列を初期化します
Availability 有効性
Technology
init(capacity numItems: Int
)
numItems
The initial capacity of the new array. 新しい配列の初期容量。
An array initialized with enough memory to hold num
objects. The returned object might be different than the original receiver.
初期化される配列オブジェクトは、num
個数のオブジェクトを保持するのに十分なメモリを持ちます。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
Mutable arrays expand as needed; num
simply establishes the object’s initial capacity.
可変配列は必要に応じて拡大します;num
は簡単にオブジェクトのもつ初期容量を確立します。
This method is a designated initializer. このメソッドは、指定イニシャライザです。
init()
+ arrayWithCapacity:
NSMutableArray
object with enough allocated memory to initially hold a given number of objects.
NSMutableArray
オブジェクトを、与えられた数のオブジェクトを最初から保持するのに十分にアロケートされたメモリで作成して返します。