up vote 21 down vote favorite
4
share [g+] share [fb]

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?

link|improve this question

53% accept rate
6  
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 '09 at 18:09
Michael Rogers' answer below adds a bit of an explanation on why the code works even when IBAction is left out. – Krishna Feb 24 '11 at 7:30
feedback

5 Answers

up vote 37 down vote accepted

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|improve this answer
Thanku ......... – suse Oct 29 '09 at 11:31
3  
But yo, if you DON'T include IBAction any methods you declare in your ViewController still show up in Interface builder! – bobobobo Nov 9 '09 at 18:07
feedback

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|improve this answer
thanks a lots... – suse Oct 29 '09 at 11:33
5  
but why does it still work if you don't include the IBOutlet labelling..? – bobobobo Nov 9 '09 at 18:08
feedback

The traditional way to flag a method so that it will appear in Interface Builder, and you can drag a connection to it, has been to make the method return type IBAction. However, if you make your method void, instead (IBAction is #define'd to be void), and provide an (id) argument, the method is still visible. This provides extra flexibility, al

All 3 of these are visible from Interface Builder:

-(void) someMethod1:(id) sender; 
-(IBAction) someMethod2; 
-(IBAction) someMethod3:(id) sender;

See Apple's Interface Builder User Guide for details, particularly the section entitled Xcode Integration.

link|improve this answer
feedback

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|improve this answer
thank You:).... – suse Oct 29 '09 at 11:30
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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