Type Method 型メソッド

indexSetWithIndexesInRange:

Creates an index set with an index range. あるインデックス範囲でインデックス集合を作成します。

Declaration 宣言

+ (instancetype)indexSetWithIndexesInRange:(NSRange)range;

Parameters パラメータ

indexRange

An index range. インデックス範囲。 Must be in the range 0 .. NSNotFound - 1.

Return Value 戻り値

NSIndexSet object containing indexRange. NSIndexSetオブジェクト、それはindexRangeを含んでいます。

Discussion 議論

The resulting index set has a firstIndex equal to the location of indexRange, and a count equal to the length of indexRange. Specifying a zero-length range results in an empty index set. 結果のインデックス集合は、indexRangelocationと等しいfirstIndex、そしてindexRangelengthと等しいcountを持ちます。ゼロ長範囲を指定することは、空のインデックス集合という結果になります。

See Also 参照

Creating Index Sets インデックス集合を作成する