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

compare:

Indicates the depth-first traversal order of the receiving index path and another index path. この受け手側インデックスパスと別のインデックスパスの深さ優先走査順を指し示します。

Declaration 宣言

- (NSComparisonResult)compare:(NSIndexPath *)otherObject;

Parameters パラメータ

indexPath

Index path to compare. 比較することになるインデックスパス.

This value must not be nil. If the value is nil, the behavior is undefined. この値は、nilではいけません。値がnilならば、挙動は未定義です。

Return Value 戻り値

The depth-first traversal ordering of the receiving index path and indexPath. 受け手側インデックスパスとindexPathの深さ優先走査順。

  • NSOrderedAscending: The receiving index path comes before indexPath. NSOrderedAscending: 受け手側インデックスパスはindexPathの前に来ます。

  • NSOrderedDescending: The receiving index path comes after indexPath. NSOrderedDescending: 受け手側インデックスパスはindexPathの後に来ます。

  • NSOrderedSame: The receiving index path and indexPath are the same index path. NSOrderedSame: 受け手側インデックスパスとindexPathは同じインデックスパスです。