- indexAtPosition:
Provides the value at a particular node in the index path.
インデックスパスの中の特定のノードでの値を提供します。
- getIndexes:
Copies the objects contained in the index path into indexes.
インデックスパスの中に含まれるオブジェクトそれらをインデックスそれらにコピーします。
Availability 有効性
Technology
- (void)getIndexes:(NSUInteger
*)indexes
range:(NSRange
)positionRange;
indexes
Pointer to a C array of at least as many NSUInteger
objects as specified by the length of position
. On return, the array holds the index path's indexes.
少なくともposition
の長さによって指定されるのと同じだけ多くのNSUInteger
オブジェクトからなるC配列に対するポインタ。戻りにおいて、配列はそのインデックスパスのもつインデックスそれらを保持します。
positionRange
A range of valid positions within the index path. If the location plus the length of position
is greater than the length of the index path, this method raises an NSRange
.
インデックスパス内の有効な位置の範囲。position
の長さを足した位置がインデックスパスの長さより大きいならば、このメソッドはNSRange
を引き起こします。
You must allocate the memory for the C array. あなたは、C配列に対してメモリをアロケートしなければなりません。
- indexAtPosition:
- getIndexes: