The answer is YES ...
I was confused too, but try the following:
open xib file
assistant editor window window and get the .h file code next to your XIB IB file
selected an object in the IB file (an object without a link to any var)
ctrl click on it and select: "new link" button
drag the line to the .h code file in the @interface {} section
enter a name for your new var ("aaa")
(note that no property "aaa" was created)
now Xcode has done all the magic for you and ...
in the .m file, you can find in the dealloc method:
- (void) dealloc { [aaa release]; [super dealloc]; }
So ... if Apple releases it, it seems that by default IBOutlet files downloaded through the XIB file are saved ...
EDIT:
here is the dot in the apple document :
source share