Skip to content

Instantly share code, notes, and snippets.

@marceloandrader
Created October 7, 2011 15:46
Show Gist options
  • Save marceloandrader/1270592 to your computer and use it in GitHub Desktop.
Save marceloandrader/1270592 to your computer and use it in GitHub Desktop.
ios snippets
// For trace where an object is being released
- (void)release {
NSLog(@"%@",[NSThread callStackSymbols]); // Print the stack trace
[super release]; //Set breakpoint here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment