Tuesday 17 February 2009

IBAction and IBOutlet : what is this ?

During my programming efforts with XCode and Interface Builder , I never stood still what the meaning was of IBAction and IBOutlet.
I known that the identify an action or a field , but what are they ?
They are not classes or structs thats for sure.

But if you dig hard enough in the documentation of Apple, then you find out that they are nothing more than AppKit constants (and macro).
And IBAction is  just another name for void, they are used as syntax sugar for XCode and Interfacebuilder so that XCode&InterfaceBuilder can interpret the variables and methods correctly.

And IBOutlet is an empty macro.

You can find them in NSNibDeclarations.h

Conclusion: don't search for anything fancy, they are just void....

4 comments:

  1. wow. where is that photo from on your blog ?

    ReplyDelete
  2. Seriously that photo rules, heh.

    ReplyDelete
  3. Im beginning to study XCODE and I was getting idiot with this new terms, after reading this clarification im feeling much better, thank u very much

    ReplyDelete