Why must I make a protocol like this?
Posted
by mystify
on Stack Overflow
See other posts from Stack Overflow
or by mystify
Published on 2010-05-31T14:00:09Z
Indexed on
2010/05/31
14:03 UTC
Read the original article
Hit count: 179
iphone
@protocol SomeDelegate<NSObject>
//stuff...
@end
Why the <NSObject>
part? Couldn't I just do
@protocol SomeDelegate
//stuff...
@end
?
© Stack Overflow or respective owner