Cocoa バインディング、KVC、および KVO が頭を悩ませ始めています。私がやりたいことは、NSTextField の値をビュー コントローラーのプロパティの値にバインドすることだけです。誰かが私が間違っているところを教えてもらえますか? どんな助けでも大歓迎です。以下は、私が行っていることの簡略化されたバージョンです。
MyViewController.h:
#import <Cocoa/Cocoa.h>
@interface MyViewController : NSViewController
@property NSString *colorSpaceName;
@property IBOutlet NSTextField *colorSpaceLabel;
@end
MyViewController.m:
#import "MyViewController.h"
@implementation MyViewController
@synthesize colorSpaceName;
- (id)initWithNibName:(NSString *)nibNameOrNil
bundle:(NSBundle *)nibBundleOrNil
{
// ...
if ( self ) {
[self.colorSpaceLabel bind:@"stringValue"
toObject:self
withKeyPath:@"colorSpaceName"
options:nil];
}
// ...
}
@end