Created
January 9, 2014 10:08
-
-
Save kostiakoval/8332010 to your computer and use it in GitHub Desktop.
ManagedObject Category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NSManagedObject+RFObject.h | |
// PocketID | |
// | |
// Created by Konstantin Koval on 09/01/14. | |
// Copyright (c) 2014 Rocketfarm. All rights reserved. | |
// | |
#import <CoreData/CoreData.h> | |
@interface NSManagedObject (RFObject) | |
- (void)fillObjectWithAttributes:(NSDictionary *)attributes; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NSManagedObject+RFObject.m | |
// PocketID | |
// | |
// Created by Konstantin Koval on 09/01/14. | |
// Copyright (c) 2014 Rocketfarm. All rights reserved. | |
// | |
#import "NSManagedObject+RFObject.h" | |
@implementation NSManagedObject (RFObject) | |
- (void)fillObjectWithAttributes:(NSDictionary *)attributes | |
{ | |
NSAssert(FALSE, @"fillObjectWithAttributes not implemented in %@", [self class]); | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment