I saw this in some header file in the framework directory:
@interface NSCharacterSet : NSObject <NSCopying, NSMutableCopying, NSCoding>
@end
@interface NSMutableCharacterSet : NSCharacterSet <NSCopying, NSMutableCopying>
@end
I thought protocols were inherited. If I am right, then there is no need to enter <NSCopying, NSMutableCopying>again after " NSMutableCharacterSet : NSCharacterSet". And NSMutableCharacterSet also conforms to NSCoding protocol, right?
How do I recruit Apple again? Am I mistaken?
source
share