@protocol SomeDelegate<NSObject>
//stuff...
@end
Why the <NSObject> part? Couldn't I just do
@protocol SomeDelegate
//stuff...
@end
?
@protocol SomeDelegate<NSObject>
//stuff...
@end
Why the <NSObject> part? Couldn't I just do
@protocol SomeDelegate
//stuff...
@end
?
This question is an exact duplicate of http://stackoverflow.com/questions/679822/why-tack-a-protocol-of-nsobject-to-a-protocol-implementation