Parmanoir

What's IB connecting to when you connect to First Responder ?

To nothing !

When first using Interface Builder, I was quite dumbfounded by the First Responder box sitting here. Image:First Responder.png What the hell is that '1' for ? Turns out it works almost like event bubbling in Javascript.

  • Event Bubbling when clicking an element on a page, the browser looks for onclick on that element. If not found, the browser goes up its ancestors until it finds an onclick it can respond to. If no handler is found, the browser uses its own onclick handler.
  • Responder chain when clicking an object in a window, Cocoa looks up action on that object. If that object has a target, that's like calling (in JS) clickedObject.target[clickedObject.action](clickedObject) (Sending itself as parameter, like event.target) — that's Target/Action in Cocoa terms. But if that object has no target, Cocoa goes up the responder chain to find an object that it can call its action on. If not found, you'll hear that default buzzing sound.

In JS we have a fixed name message searched up ; in Cocoa we have a variable name message searched up. Why ? To give each link in the chain a chance to handle the message. When selecting copy in the Edit menu, an action called copy: is sent down the chain. If NSTextField handles it, it copies its text to the pasteboard. If your control handles it, you get a chance to put whatever you want on the pasteboard. Another use is when using multiple NIBs (or a document based app) the first responder can be used to call methods on the application delegate, the last link of the responder chain.

So next time you're connecting an NSButton to myFancyMethod: in the first responder, Interface Builder will actually be setting your button's action property to myFancyMethod:. In the NIB it's connected to nothing — the 'connection' happens at runtime.


Follow me on Twitter
Planet Cocoa
Cocoa.fr

2009 04 15Debugging with Activity Monitor
2009 03 25How Core Image Color Tracking works
2009 03 154Custom NSThemeFrame
2009 03 10Which framework is running ?
2009 03 074CoreUI can paint pretty big
2009 02 18Localization with functions
2009 01 30Did you forget to nest alloc and init?
2009 01 16JSCocoa on the iPhone
2009 01 11Mixing WebView and JavascriptCore
2009 01 09Badge overflow
2009 01 09Find your Garbage Collection leaks with Instruments
2008 12 19384 percent dynamic
2008 12 15Class pairs and super
2008 12 113Redirecting NSLog to a file
2008 12 10Whoops ! super is not runtime
2008 12 09Don't overload release or retainCount in JSCocoa
2008 12 05Sidestepping JavascriptCore's JSEvaluateScript
2008 12 031Multiple processes rendering to one window
2008 12 02When does autorelease release ?
2008 12 02Process Sandboxes : an easy path to security ?
Image:rss.png
Image:rss.png

Powered by MediaWiki

Hi ! I'm learning Cocoa to (hopefully !) become an indie developer.

I've written software all my professional life, in C++, PHP, Javascript. I've designed websites and web interfaces. My last venture went into flames as clients were happy but didn't like paying very much.

I've had little luck in the B2B world, I'm hoping for a better future writing Mac applications.