I am trying to find an item in a NSMutableArray from it's value, only to find its indexPath.

I have absolutely no idea of how to do this, as I am very new to programming in general.

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Are you perhaps looking for - indexOfObject:? This method returns the index on which the object specified can be found in the NSArray (from which NSMutableArray inherits) on which the method is ran.

link|improve this answer
Yeah, something like that. But how do I find the object? All I got is its contents.. – Emil Apr 26 '10 at 20:51
feedback

You probably need something like this or this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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