Possible Duplicate:
Multiple Delegates in Objective C
C# programmer here.
I have a subclass and I want it to fire an event that multiple classes can subscribe to.
I had been using delegates to do this type of thing, but the problem I have is that only one class can subscribe to the delegate.
What is the pattern is objective c to have multiple observers?