On Nov 4, 2009, at 3:17 PM, Richard Somers wrote:

@interface MyView : NSView
{
    double num;
}
@end

@implementation MyView

- (double)num
{
    return num;
}

- (void)setnum:(double)newNum
{
    [self willChangeValueForKey:@"num"];
    num = newNum;
    [self didChangeValueForKey:@"num"];
}

@end

When the view changes num, it need to push the change to the bound model objects.

See mmalc’s Graphics Bindings sample:

        http://homepage.mac.com/mmalc/CocoaExamples/controllers.html

- Jim

_______________________________________________

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