vote up 4 vote down star

I am iterating through an NSArray that contains many different types of objects. There are many methods to figure out what class the object is. However, I haven't been able to find a good way to find out if an object can implement a particular function. I can put it in a try-catch but it will still output an error message in the console even if I'm catching the error. Is there a better way to do this?

Simple example:

@try {
    if ([element lowercaseString]) {
        //do something
    }
}
@catch (id theException) {
    // do something else
}
flag

1  
Check for respondsToSelector as many have answered. In Objective-C it isn't good style (in my and many others' opinion) to use exceptions to control program flow except for errors in programming. As you are checking if a method exists in this case, it isn't appropriate. – Abizern Jul 9 at 13:48

3 Answers

vote up 16 vote down check

As suggested, you can use respondsToSelector: message declared on NSObject. The provided code would be like

if ([element respondsToSelector:@selector(lowercaseString)]) {
    // ... do work
}
link|flag
1  
+1 for best answer with link and code example. – Quinn Taylor Jul 9 at 14:33
7  
Don't forget that the colons are an inseparable part of the selector. @selector(catFish) is completely different from @selector(catFish:). – Chuck Jul 9 at 14:39
vote up 0 vote down

A nice generic category to have in your code is this:

@interface NSObject (KMExtensions)

- (id)performSelectorIfResponds:(SEL)aSelector;
- (id)performSelectorIfResponds:(SEL)aSelector withObject:(id)anObject;

@end

@implementation NSObject (KMExtensions)

- (id)performSelectorIfResponds:(SEL)aSelector
{
    if ( [self respondsToSelector:aSelector] ) {
    	return [self performSelector:aSelector];
    }
    return NULL;
}

- (id)performSelectorIfResponds:(SEL)aSelector withObject:(id)anObject
{
    if ( [self respondsToSelector:aSelector] ) {
    	return [self performSelector:aSelector withObject:anObject];
    }
    return NULL;
}

@end

And then you can use:

[element performSelectorIfResponds:@selector(lowercaseString)];
link|flag
vote up 5 vote down

Look at NSObject's respondsToSelector method

link|flag

Your Answer

Get an OpenID
or

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