Skip to content

Instantly share code, notes, and snippets.

@danielctull
Created October 7, 2010 22:30
Show Gist options
  • Save danielctull/616038 to your computer and use it in GitHub Desktop.
Save danielctull/616038 to your computer and use it in GitHub Desktop.
@implementation DCTCDItem (DCTManagedObjectAutomatedSetup)
+ (NSString *)dct_uniqueKey {
return @"theID";
}
+ (NSDictionary *)dct_mappingFromRemoteNamesToLocalNames {
NSMutableDictionary *d = [[NSMutableDictionary alloc] init];
[d setObject:@"theID" forKey:@"remoteID"];
return [d autorelease];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment