My first instinct is to
FooType *myFoo = nil;
for (id obj in myArray) {
if ( [obj isKindOfClass:[FooType class]] ) myFoo = obj;
}
With all the goodies in Objective-C and NSArray, there's gotta be a better way, right?
|
My first instinct is to
With all the goodies in Objective-C and NSArray, there's gotta be a better way, right? |
|||
|
|
|
With Blocks support (in iOS 4 or Snow Leopard):
It's not really any shorter. You might consider writing your own |
|||
|
|
|
Like jtbandes mentioned, you can write an
then
then when you want to use it just do:
which should hold all of the objects of the specified class. Disclaimer: not tested, sorry if something's wrong :/ |
|||
|
|
|
Nope. That's how you would do it. Though there may be version that accepts a block in the new iOS4 API that might make it a little simpler. |
|||
|
|