Skip to content

Instantly share code, notes, and snippets.

@kechol
Created July 6, 2013 19:03
Show Gist options
  • Select an option

  • Save kechol/5940886 to your computer and use it in GitHub Desktop.

Select an option

Save kechol/5940886 to your computer and use it in GitHub Desktop.
loggnig object lifecycle
- (id)init
{
self = [super init];
if (self)
{
NSLog(@"%@: %@", NSStringFromSelector(_cmd), self);
}
return self;
}
- (void)dealloc
{
NSLog(@"%@: %@", NSStringFromSelector(_cmd), self);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment