- (void)someMethod
{
if ( [delegate respondsToSelector:@selector(operationShouldProceed)] )
{
if ( [delegate operationShouldProceed] )
{
// do something appropriate
}
}
}
The documentation says:
The precaution is necessary only for optional methods in a formal protocol or methods of an informal protocol
What does it mean? If I use a formal protocol I can just use [delegate myMethod]?
You use it pretty much just when you think you need to: to check to see if an object implements the method you are about to call. Usually this is done when you have an optional methods or an informal protocol.
I’ve only ever used
respondsToSelectorwhen I’m writing code that must communicate with a delegate object.You sometimes would want to use
respondsToSelectoron any method that returns andidor genericNSObjectwhere you aren’t sure what the class of the returned object is.