There is a similar question to this on SO here, however I just want to clarify something that wasn\'t fully explained there.
I understand that all delegates and outlets
I have some empirical evidence to support that IBOutlets are indeed already set to nil automatically. Here's what I did:
@synthesize myLabel = myLabel_
) so that I may later inspect their values in the debugger.viewDidUnload
.viewDidUnload
to get called by simulating a memory warning.The explicit ivars all had nil
as their value then I hit the breakpoint.