Skip to content

Instantly share code, notes, and snippets.

@moxuse
Created January 25, 2013 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moxuse/4631609 to your computer and use it in GitHub Desktop.
Save moxuse/4631609 to your computer and use it in GitHub Desktop.
iOS object debug pattern
- (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