I have two classes that can act as a delegate of a third class, and both implement a formal protocol made entirely of optional methods. One of the classes implements everything while another only implements a couple methods that i care about. However, at runtime when i have the second class act as the delegate to the third class, and the third class ends up calling one of the unimplemented optional methods on that delegate, i get a runtime error essentially saying "Target does not respond to this message selector." I thought that objective-c handled this case correctly, and that it would just do nothing if that method wasn't actually defined on the class. Might there be something i'm missing?
|
When you call an optional method of your delegate, you need to make sure it responds to the selector before calling it:
|
|||||
|
|
Optional protocol methods simply mean the object implementing the protocol does not have to implement the method in question - the callee then absolutely must check whether the object implements the method before calling (otherwise you'll crash, as you noticed). These NSObject HOM categories can be helpful:
Then you can simply do:
|
|||||||
|
|
|
This Blocks solution works well, once you get your head wrapped around what is going on. I added a BOOL result because I wanted to be able to conditionally run one of several optional methods. Some tips if you are trying to implement this solution: First, if you haven't encountered Extension/Categories yet, you simply add this to the top of your class, OUTSIDE the existing class definition. It will be a public or private extension based on where you put it.
Second, here's how you call it from your code:
Replace Param1:Param2:ParamN: with the names of each parameter for your protocol method. Each one should end with a colon. So if your protocol method looks like:
the last line would look like this:
|
|||
|
|
|
Blocks might provide a better solution. They allow to conditionally perform any code based on the existence of an implementation of a given method:
By using this addition to NSObject, you can conditionally execute any @optional method, no matter how many parameters it might have. See How to safely send @optional protocol messages that might not be implemented |
|||
|
|