Instance Method インスタンスメソッド

getObjects:range:

Copies the objects contained in the ordered set that fall within the specified range to objects. この順序集合に含まれるオブジェクトで、指定された範囲内に収まるものをobjectsにコピーします。

Declaration 宣言

- (void)getObjects:(ObjectType  _Nonnull *)objects 
             range:(NSRange)range;

Parameters パラメータ

objects

A C array of objects of size at least the length of the range specified by aRange. オブジェクトそれらからなるあるC配列、少なくともaRangeによって指定された範囲の長さの大きさ。

range

A range within the bounds of the array. この配列の境界内の範囲。

If the location plus the length of the range is greater than the count of the array, this method raises an NSRangeException. その位置にこの範囲の長さを加えたものが配列を勘定したものより大きいならば、このメソッドはNSRangeExceptionを引き起こします。

See Also 参照

Accessing Set Members 集合メンバにアクセスする