I set a variable as IBOutlet. and use @property(retain) @synthesize in my .h and .m file. Like this:
@interface testViewController {
NSArray *keys;
}
@property (nonatomic, retain) NSArray *keys;
@end
@implementation SectionViewController
@synthesize keys;
In many books, they set that object to nil in viewDidUnload method, and use release method to release that object in dealloc method. Like this:
- (void)viewDidUnload {
self.keys = nil;
}
- (void)dealloc {
[super dealloc];
[keys release];
}
As I know, if I use self.keys = nil, the result is same as [keys release] in dealloc method;Object keys will be release, and "nil" will not be retain.
Why some books use this form every time?
Thanks