I always had the impression a protocol should help me implement certain methods so my object will responds to certain messages. If I forget a method or type it wrong the compiler will tell me.
But what is the use of setting a protocol for a class when all methods are optional? Like in the NSSpeechSynthesizerDelegate-protocol. The compiler doesn't remind me to implement some methods and he doesn't tell me if I wrote a method name the wrong way. And the program works fine even without the protocol.