Keary,

On 24.03.2009, at 16:21 Keary Suska wrote:

OTOH, you could have an outlet to the defaults controller, say, named "defaultsController" and use @"defaultsController.values.DEFALTSKEY" to keyPathsForValuesAffectingPreview. I think that is supposed to work...

Wow, thank you so much, you really made my day! Yesterday I already tried "values.DEFAULTSKEY" as a key path, and wondered how to reference the defaults controller. I just didn't thought of IBOutlet'ing it, shame on me ...

This code snippet works perfectly:

- (NSSet *)keyPathsForValuesAffectingPreview
{
// Use KVO to update the print panel's preview if one of the options is changed. The defaultsController is bound via IBOutlet
        
        return [NSSet setWithObjects:
                        @"defaultsController.values.PrintJumps",
                        @"defaultsController.values.PrintGrid",
                        @"defaultsController.values.PrintFastMode",
                        nil];
}

Take care, Mattes
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to