ObjectiveC Syntax for Specifying Protocol Name in Method Argument
- by live2dream95
What's the ObjectiveC syntax for specifying a protocol as an argument in a method?
Say I have 2 protocols, MyProtocol and MyProtocolCB:
@protocol MyProtocolCB <NSObject>
- (void) func;
@end
@protocol MyProtocol <NSObject>
- (void) register:(MyProtocolCB*) cb;
@end
I'm receiving this syntax error:
error: expected type-specifier before 'MyProtocolCB'