kylef-archive / KFData

Core Data done right for iOS 5+/OS X 10.7+
http://cocoadocs.org/docsets/KFData/
BSD 2-Clause "Simplified" License
53 stars 7 forks source link

Refactor KFAttribute so it becomes a protocol/multiple objects #58

Closed kylef closed 10 years ago

kylef commented 10 years ago

Multiple protocols so you can have type checking on different types of attributes, to-many, to-one, etc.

@protocol KFToManyAttribute

- (NSPredicate *)in:(id<NSFastEnumeration>)objects;

@end
kylef commented 10 years ago

Swift version uses Generics and provides this kind of thing.