I tweaked Tom's approach slightly, to get the following design methodology: Adding IVars to a Class (and it's subclasses). A future post will explain in detail why I needed these extra parameters, but briefly, I want to extend NSManagedObjectContext, a class I do not own, with methods that short cut the work required to build and execute fetching from Core Data. Adding a little bit of state and/or default values to the context (instead of passing that data into/out of the method calls) simplifies matters. Making IVar access transparent eases the burden on the caller. Since I don't own the class definition, I needed another method to associate data and Tom's post pointed the way.
Example Code
CompactFetch.h - Category declaration
@interface NSManagedObjectContext (CompactFetch)
@property (assign,nonatomic) NSUInteger defaultFetchLimit;
@property (retain,nonatomic,readonly) NSError* lastError;
@end
@property (assign,nonatomic) NSUInteger defaultFetchLimit;
@property (retain,nonatomic,readonly) NSError* lastError;
@end
In our header, we create a category, CompactFetch, for NSManagedContext. Notice the two properties created. These property declarations do not use @synthesize for their implementations. The nice thing about making them properties, is that code can use dot-notation to set or get their values. In addition, the code is KVC compliant. Note, you can use objects here, just be careful with assign & retain.
CompactFetch.m - IVar class declaration
@interface CompactFetchIVars : NSObject
@property (assign,nonatomic) NSUInteger defaultFetchLimit;
@property (retain,nonatomic) NSError* lastError;
+ (CompactFetchIVars*)fetch:(NSManagedObjectContext*)moc;
@end
@property (assign,nonatomic) NSUInteger defaultFetchLimit;
@property (retain,nonatomic) NSError* lastError;
+ (CompactFetchIVars*)fetch:(NSManagedObjectContext*)moc;
@end
Next, we create a class, CompactFetchIVars, which mirrors the @property declarations on the Category. Again, be sure to match up the assign & retain annotations. Although the property names need not be the same, keeping them that way reduces confusion.
Look at the class method, +fetch:, the heart of our design. It takes an NSManagedObjectContext and returns an instance of our class. We use this class method to attach new ivars (new data) onto the Core Data class. By the way, this @interface resides in the .m file, there's no reason to expose the caller to this detail.
Now, for CompactFetchIVars's class definition:
CompactFetch.m - IVar class definition
@implementation CompactFetchIVars
@synthesize defaultFetchLimit, lastError;
+ (CompactFetchIVars*)fetch:(NSManagedObjectContext*)moc
{
static void *compactFetchIVarKey = &compactFetchIVarKey;
CompactFetchIVars *ivars = objc_getAssociatedObject(moc, &compactFetchIVarKey);
if (ivars == nil) {
ivars = [[CompactFetchIVars alloc] init];
objc_setAssociatedObject(moc, &compactFetchIVarKey, ivars, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
[ivars release];
}
return ivars;
}
- (id)init
{
self = [super init];
return self;
}
- (void)dealloc
{
self.lastError = nil;
[super dealloc];
}
@end
@synthesize defaultFetchLimit, lastError;
+ (CompactFetchIVars*)fetch:(NSManagedObjectContext*)moc
{
static void *compactFetchIVarKey = &compactFetchIVarKey;
CompactFetchIVars *ivars = objc_getAssociatedObject(moc, &compactFetchIVarKey);
if (ivars == nil) {
ivars = [[CompactFetchIVars alloc] init];
objc_setAssociatedObject(moc, &compactFetchIVarKey, ivars, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
[ivars release];
}
return ivars;
}
- (id)init
{
self = [super init];
return self;
}
- (void)dealloc
{
self.lastError = nil;
[super dealloc];
}
@end
A typical class definition, we have @synthesize and init/dealloc. Note, -dealloc silently releases lastError through the nil assignment (via the synthesized property).
What's +fetch: up to? objc_getAssociatedObject retrieves an object previously associated with the target class, our NSManagedObjectContext. If this is the first time through, there is no association and nil is returned. In that case, we must create and associate an instance of our class, CompactFetchIVars, with the context. objc_setAssociatedObject performs the association. Note that both the get & set association calls require a key (in this case, compactFetchIVarKey), and despite the documentation, that key need not be a string. The functions use the key's unique location in program memory (assigned by the compiler) to determine uniqueness of the key.
CompactFetch.m - Category definition
@implementation NSManagedObjectContext (CompactFetch)
- (NSUInteger)defaultFetchLimit
{
return [CompactFetchIVars fetch:self].defaultFetchLimit;
}
- (void)setDefaultFetchLimit:(NSUInteger)limit
{
[CompactFetchIVars fetch:self].defaultFetchLimit = limit;
}
- (NSError*)lastError
{
return [CompactFetchIVars fetch:self].lastError;
}
- (void)setLastError:(NSError*)error
{
[CompactFetchIVars fetch:self].lastError = error;
}
//...
- (NSUInteger)defaultFetchLimit
{
return [CompactFetchIVars fetch:self].defaultFetchLimit;
}
- (void)setDefaultFetchLimit:(NSUInteger)limit
{
[CompactFetchIVars fetch:self].defaultFetchLimit = limit;
}
- (NSError*)lastError
{
return [CompactFetchIVars fetch:self].lastError;
}
- (void)setLastError:(NSError*)error
{
[CompactFetchIVars fetch:self].lastError = error;
}
//...
Finally, we implement the get/set methods for the Category we attached to NSManagedObjectContext. In them, we use the +fetch: class method to retrieve (or create, associate and retrieve) the instance of CompactFetchIVars attached to the NSManagedObjectContext. Then, we get or set the parameter, as appropriate. Under the covers, this goes from a method call on the Core Data instance via the Category through to the attached IVar instance. The runtime knows to call -dealloc on both NSManagedObjectContext and CompactFetchIVars, when retain count goes to zero. DO NOT RETAIN a reference from the IVar class to the attached class; any back track should be assign only, or a retain cycle is created and memory leaks.