You cannot get the address of something returned by a function (or method). You need to get the address of the color ivar directly (i.e. &color). In your case though, I recommend using the approach you proposed yourself (id tempCol = self.color; [NSValue value:&tempCol];).
Note that a method is invoked when using dot notation.
self.color
// is equal to
[self color]
&([self color]) is also impossible because & is resolved at compile-time, not at runtime. The return value of [self color] and self.color (which are equal) aren't yet known at compile-time (even when using @synthesize, since you can change a method's implementation in Objective-C at runtime (e.g. with method swizzling or using categories)).
It seems that you don't fully understand what @synthesize does, so I'll explain. :)
Basically what @synthesize does is this: the compiler generates methods and their implementations from the given property names.
For example, this property:
@property(nonatomic, retain) NSColor *color;
Together with this synthesization:
@synthesize color;
Will insert this code for you in the @implementation:
- (NSColor *)color {
return color;
}
- (void)setColor:(NSColor *)newColor {
if (color == newColor) { return; }
NSColor *theOldColor = color;
color = [newColor retain];
[theOldColor release];
}
When you like to use your own setter or getter, you simply define these in the @implementation by using the same method names. You could, for example, return a default color if none is set yet:
- (NSColor *)color {
if (color) { return color; }
return [NSColor whiteColor];
}
Now the compiler will generate the setter, but not the getter: it will use the getter you provided, you can still use it with self.color.
You may want to take a look at Apple's guide on properties.