Created
November 19, 2012 16:22
-
-
Save johnjohndoe/4111597 to your computer and use it in GitHub Desktop.
How to use NSSelectorNameBindingOption with an NSButton
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "AppDelegate.h" | |
@implementation AppDelegate | |
@synthesize window = _window; | |
@synthesize button = m_button; | |
- (void)awakeFromNib { | |
NSDictionary* options = [NSDictionary dictionaryWithObject:@"buttonClicked" forKey:NSSelectorNameBindingOption]; | |
[m_button bind:@"target" toObject:self withKeyPath:@"self" options:options]; | |
} | |
- (void)buttonClicked { | |
NSLog(@"%s", __PRETTY_FUNCTION__); /* DEBUG LOG */ | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment