Objective C Generics 旨在在 Objective-C 中支持基本的泛型。
将 ObjectiveCGenerics.h
复制到您的项目中。在定义新类时使用 GENERICSABLE
宏。
#import "ObjectiveCGenerics.h"
GENERICSABLE(MyClass)
@interface MyClass : NSObject<MyClass>
@property (nonatomic, strong) NSString* name;
@end