What is that someMethod? Did you include the title MulticastDelegate.h?
Update: Aha, in this case you need to tell the compiler that the delegate implements the interface Notifier:
#import "MulticastDelegate.h"
@protocol Notifier
- (void) someMethod;
@end
@interface Manager
{
MulticastDelegate <Notifier> delegate;
}
@end
. ? , delegate someMethod, delegate MulticastDelegate? - ?