vote up 2 vote down star
1

According to Cocoa Programming for Mac OS X, 3rd Edition, on page 245 (chapter 17), you will usually create views in Interface Builder. However, it is possible to create them in code, a la:

NSView *superview = [window contentView]; 
NSRect frame = NSMakeRect(10, 10, 200, 100); 
NSButton *button = [[NSButton alloc] initWithFrame:frame]; 
[button setTitle:@"Click me!"]; 
[superview addSubview:button]; 
[button release];

That’s all well and good, but how would I wire up said control’s outlets to actions in code? (In .NET, this is an easy thing; add a delegate ... I’m hoping it’s similarly easy in Cocoa/Obj-C.)

flag

2 Answers

vote up 9 vote down check

You can wire them up using a simple assignment. To continue your code from above:

[button setTarget: self];
[button setAction: @selector(myButtonWasHit:)];

link|flag
Beautiful, thanks! That's actually easier than it is in .NET. – John Rudy Dec 8 '08 at 16:49
vote up 5 vote down

And if you want to target the first responder rather than a particular object:

[button setTarget:nil];
[button setAction:@selector(myAction:)];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.