I used to declare IBOutlets for iPhone like so,
IBOutlet UILabel *myLabel
I just found out that the correct way to declare them is like,
UILabel *myLabel;
@property(nonatomic,retain) IBOutlet UILabel *myLabel;
But with the second and correct way do you have to release each IBOutlet in the -(void)dealloc
method to avoid memory leaks?