Skip to content

Instantly share code, notes, and snippets.

@johnjohndoe
Created November 19, 2012 16:22
Show Gist options
  • Save johnjohndoe/4111597 to your computer and use it in GitHub Desktop.
Save johnjohndoe/4111597 to your computer and use it in GitHub Desktop.
How to use NSSelectorNameBindingOption with an NSButton
#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