I'm trying to make a dictionary store a map of delegates that correspond to a protocol. I need some consistent key that represent a protocol.
For example the following gives me a protocol object
Protocol * one = @protocol(SomeProtocolDefinedEarlier);
And it responds to [one hash]
but the hash isn't the same each time you get a protocol object for the same protocol. Is there some name
message or something I can use to identify it?