I have been developing for iPhone from last 1-2 months and all the time for taking IBOutlet I use the following method to declare any property:

In .h files:

@interface ....
{
     controlType varName;
}

@property() IBOutlet controlType varName;

In .m files:

at top -

@synthesize varName;

in delloc method - [varName release];

Although the method is good but it isn't very good when its taking a couple of minutes just for declaring property.

Is there any automatic process for declaring properties, IBOutlets, IBActions or basic data variables.

I hope there should be some automatic methods for this scenario as this is a very basic process.

Thanks all.

link|improve this question

you forgot the self.varName = nil; in viewDidUnload ;-) – Matthias Bauch Mar 22 '11 at 9:38
I never do so.. :( I didn't face any problem but what does this self.varName = nil do? – Guru Mar 22 '11 at 12:24
feedback

5 Answers

up vote 3 down vote accepted

In fact, yes!

You no longer need to declare the actual iVar.

In short, simply leave out this part: controlType varName;

For now, you do still need to explicitly "synthesize".

(As far as I can see, they could possibly automate that in the future. But for now you have to "synthesize" to create the setter and getter.)

You do still have to release the memory - there's really no way that could be automated, as memory handling is "real he-man programming."

For any new chums reading, don't forget the "self." part when using the property.

Plus note that XCode4 even has a new automatic thingy. Simply drag from the interface builder, to your .h file, and it will do everything for you -- try it!


In answer to your suplementary question: An IBOutlet DOES NOT PARTICULARLY NEED TO BE a property - you can just use a normal cheap iVar. On the other hand, if you wish, to you can use a property. Furthermore: you can even use the new trick (2011) of not bothering to declare the ivar, just use the property declaration, and shove an IBOutlet in there!

link|improve this answer
Thanks mate, One more thing several time comes in my mind is that what is the difference between property and class variables? How they are different from each others? Do we need to declare property for each IBOutlet or any data member like an array? – Guru Mar 23 '11 at 12:14
feedback

Another one that not many people are aware of is that you can drag from Interface Builder to your header file to create IBActions or IBOutlets.

NOTE: Open the Assistant Editor with focus on the XIB inside IB.

If you create your IBOutlets this way Xcode automatically adds the property, synthesizes it, sets it to nil in viewDidUnload and releases it in dealloc.

You simply drag from the IB object to your header file the same way you would when creating connections between the view objects and their file owners (screenshot below). enter image description here

link|improve this answer
Does this work before XCode 4.0 ? – Guru Mar 22 '11 at 12:40
Doesn't work for my XCode 3.2.3. :( – Guru Mar 22 '11 at 12:42
feedback

There is an awesome tool that speeds the whole process up: accessorizer.

You write controlType varName; select it and press some buttons and accessorizer will create the property, init, dealloc, viewDidUnload and much more for you. You just have to paste the code into your project.

Try it, a demo is available.

link|improve this answer
Thanks for pointing to this great tool. In my opinion, this should be the answer. – Jan S. Mar 18 at 3:07
feedback

You can save yourself having to release the object by changing the property declaration. If you use:

@property (assign) IBOutlet controlType varName;

retain wont be called on your view so you wont have to release it later. This is generally safe as views are retained when they are added to a parent. If you are removing the views from their parent for some reason then you will have to retain them.

link|improve this answer
I find it's pretty rare for me to remove views that are create in IB. Usually I just set views to hidden rather than removing them and having to add them again. Also if you do forget something it will usually result in a crash as opposed to a leak which I find easier to deal with. – skorulis Mar 22 '11 at 23:06
This sounds like a bad habit to get into if you are doing collaborative development. I prefer the new feature in XCode 4.x and hope that Apple continues to improve the tools to compete with Eclipse, InteliJ, etc. – mobibob Jul 15 '11 at 21:38
feedback

Here's an xcode script to automate the tedium of declaring properties.

link|improve this answer
This won't work in Xcode 4 – Cirrostratus Aug 4 '11 at 3:33
feedback

Your Answer

 
or
required, but never shown

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