In the xcode, after you creating a UIViewController subclass, in the viewDidUnload method, there is a comment added by xcode:
- (void)viewDidUnload {
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
Here, xcode recommends us to use self.myOutlet=nil to release object.
But in xcode4, there is a cool feature: you can just drag a Interface Builder outlet to its owner's header file, then xcode will automatically create the IBOutlet object and relevant release code in viewDidUnload method.
The problem is in above scenario, it generated code is something like this:
- (void)viewDidUnload {
[super viewDidUnload];
[self setFoo:nil];
}
I mention that the "self.foo = nil;" is replaced by "[self setFoo:nil];".
Does anybody know the difference? If there is no difference, why xcode4 changes it?
Thanks.