vote up 1 vote down star
1

What is the purpose of using IBAction and IBOutlet in Objective-C coding for the iPhone, does it make any difference if I don't use them?

flag

35% accept rate
All the answers mention the same type of idea.. but nobody explains why Interface Builder seems to work just the same if you DO NOT include IBAction/IBOutlet in your source. Is there another reason for IBAction and IBOutlet or is it ok to leave them off? – bobobobo Nov 9 at 18:09

4 Answers

vote up 5 vote down check

IBAction and IBOutlet are macros defined to denote variables and methods that can be referred to in Interface Builder.

IBAction resolves to "void" and IBOutlet resolves to nothing, but they signify to Xcode and Interface builder that these variables and methods can be used in Interface builder to link UI elements to your code.

If you're not going to be used Interface Builder at all, then you don't need them in your code, but if you are going to use it, then you need to specify IBAction for methods that will be used in IB and IBOutlet for objects that will be used in IB.

link|flag
Thanku ......... – suse Oct 29 at 11:31
If this answered your question, please accept it as the answer. I notice you currently have a 0% acceptance rate. If you don't accept any answers, people will be less likely to answer your questions in the future. – Jasarien Oct 29 at 15:58
But yo, if you DON'T include IBAction any methods you declare in your ViewController still show up in Interface builder! – bobobobo Nov 9 at 18:07
vote up 0 vote down

You need to use IBOutlet and IBAction if you are using interface builder (hence the IB prefix) for your GUI components. IBOutlet is needed to associate properties in your application with components in IB, and IBAction is used to allow your methods to be associated with actions in IB. As a simple example, suppose you defined a button and label in IB. To dynamically change the value of the label by pushing the button, you would define an action and property in your app similar to:

UILabel IBOutlet *myLabel;
-(IBAction) pushme;

Then in IB you would connect myLabel with the label and connect the pushme method with the button. You need IBAction and IBOutlet for these connections to eist in IB

link|flag
thanks a lots... – suse Oct 29 at 11:33
but why does it still work if you don't include the IBOutlet labelling..? – bobobobo Nov 9 at 18:08
vote up 0 vote down

IBAction and IBOutlets are used to hook up your interface made in Interface Builder with your controller. If you wouldn't use Interface Builder and build your interface completely in code, you could make a program without using them. But in reality most of us use Interface Builder, once you want to get some interactivity going in your interface, you will have to use IBActions and IBoutlets.

link|flag
thank You:).... – suse Oct 29 at 11:30
vote up 0 vote down

Interface Builder uses them to determine what members and messages can be 'wired' up to the interface controls you are using in your window/view.

IBOutlet and IBAction are purely there as markers that Interface Builder looks for when it parses your code at design time, they don't have any affect on the code generated by the compiler.

link|flag

Your Answer

Get an OpenID
or

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