Move non-CoreData backed fields out of CoreData objects

This commit is contained in:
Cameron Gutman
2015-12-01 20:36:08 -08:00
parent 5ea92a7b48
commit bfa4856bbe
8 changed files with 20 additions and 32 deletions
-8
View File
@@ -10,12 +10,4 @@
@implementation Host
@dynamic pairState;
@synthesize online;
@synthesize activeAddress;
- (NSComparisonResult)compareName:(Host *)other {
return [self.name caseInsensitiveCompare:other.name];
}
@end