vote up 2 vote down star
1

Hey there,

Does anyone know the best way to check to see if an optional protocol method has been implemented.

I tried this:

if ([self.delegate respondsToSelector:@selector(optionalProtocolMethod:)] )

where delegate is:

id<MyProtocol> delegate;

However - I get an error saying that the function respondsToSelector is not found in the protocol!

Thanks for any help! Cheers, Nick.

flag

1 Answer

vote up 11 vote down check

respondsToSelector: is part of the NSObject protocol. Including NSObject in MyProtocol should solve your problem:

@protocol MyProtocol <NSObject>

@optional
-(void)optionalProtocolMethod:(id)anObject;

@end
link|flag
Genius... just tried this and it worked a dream. Thanks! – nickcartwright Feb 4 at 18:27

Your Answer

Get an OpenID
or

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