ObjectiveCGenerics 0.0.1

ObjectiveCGenerics 0.0.1

测试测试
语言语言 Obj-CObjective C
许可证 MIT
发布日期上次发布2014年12月

未声明 维护。



  • Tomer Shiri

Objective C Generics

Objective C Generics是一个尝试在Objective C中支持基本泛型的努力。

用法

ObjectiveCGenerics.h 拷贝到您的项目中。在定义新类时使用 GENERICSABLE 宏。

#import "ObjectiveCGenerics.h"

GENERICSABLE(MyClass)

@interface MyClass : NSObject<MyClass>

@property (nonatomic, strong) NSString* name;

@end

现在您可以使用泛型与数组和集合,就像您在Java、C#等中通常所做的那样。 code