Objective C Generics是一个尝试在Objective C中支持基本泛型的努力。
将 ObjectiveCGenerics.h
拷贝到您的项目中。在定义新类时使用 GENERICSABLE
宏。
#import "ObjectiveCGenerics.h"
GENERICSABLE(MyClass)
@interface MyClass : NSObject<MyClass>
@property (nonatomic, strong) NSString* name;
@end