When releasing objects that might have been retained during the app's lifetime, how do you check if the object really exists and prevent releasing a nil object?
Here's how I'm doing it:
- (void)dealloc{
if(account_)
[account_ release];
account_ = nil;
[super dealloc];
}