I am trying to compare an index path in my didSelectRowAtIndexPath delegate method with an array of index paths.

for (n=0; n < [tempMutArrray count]; n= n+1){

     NSComparisonResult *result = [indexPath compare:[tempMutArray objectAtIndex:n];

//What I want to do is is write an if statement that executes a certain block of code 
//if the two index paths are equal, but I cant figure out how to work with an 
//NSComparisonResult. 

} 
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use NSOrderedSame and no pointer - NSComparisonResult is just an integer:

NSComparisonResult result = [indexPath compare:[tempMutArray objectAtIndex:n];

if(result == NSOrderedSame) {
    // do stuff
}

In the Cocoa APIs, there are some non-class-types in use. Most important are those from the Foundation data types, which include

  • enumerations
  • typedefs for integral types
  • structures
link|improve this answer
feedback

It's just an int holding one of these values:

  • NSOrderedAscending
  • NSOrderedSame
  • NSOrderedDescending

In your case, test for NSOrderedSame:

if (result == NSOrderedSame) {
    ...
}
link|improve this answer
To nitpick, NSComparisonResult is an enum, not an int. – Georg Fritzsche May 19 '10 at 14:13
No it isn't. The NSOrdered... values are members of the enum _NSComparisonResult (note the underscore prefix), but NSComparisonResult is a typedef of NSInteger, which is itself a typedef of int. – Marcelo Cantos May 19 '10 at 14:32
Apologies, i somehow overlooked that :) (Note to self: look closely before nitpicking) – Georg Fritzsche May 19 '10 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.