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.

self.varName = nil;in viewDidUnload ;-) – Matthias Bauch Mar 22 '11 at 9:38