matthewcheok / Realm-JSON

A concise Mantle-like way of working with Realm and JSON.
MIT License
661 stars 129 forks source link

Add base implementation for primary key binding. #20

Closed antongaenko closed 9 years ago

antongaenko commented 9 years ago

Example usage

@implementation BGRoom (JSON)

+ (NSValueTransformer *)channelJSONTransformer
{
    return [[MCJSONPrimaryKeyTransformer alloc] initWithRealmClass:[BGChannel class]];
}

@end
matthewcheok commented 9 years ago

Thanks!