- indexPathByAddingIndex:
Returns an index path containing the nodes in the receiving index path plus another given index.
この受け手側インデックスパスに加えて別の与えられたインデックスの中のノードそれらを含んでいるあるインデックスパスを返します。
Availability 有効性
Technology
- (NSIndexPath
*)indexPathByRemovingLastIndex;
A new index path with the receiving index path’s indexes, excluding the last one. 受け手側インデックスパスのもつインデックスそれらを、最後の1つを除いて持つ新しいインデックスパス。
Returns an empty NSIndex
instance if the receiving index path’s length is 1 or less.
空のNSIndex
インスタンスを返します、もし受け手側インデックスパスの持つ長さが1またはより少ないならば。
In OS X v10.4 this method returns nil
when the length of the receiving index path is 1 or less. On iOS and macOS 10.5 and later this method never returns nil
.
OS X v10.4ではこのメソッドは、nil
を受け手側インデックスパスが1またはより少ない場合は返します。iOSとmacOS 10.5以降ではこのメソッドは決してnil
を返しません。
- indexPathByAddingIndex: