Skip to content

Instantly share code, notes, and snippets.

@chunkyguy
Created July 24, 2012 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chunkyguy/3167111 to your computer and use it in GitHub Desktop.
Save chunkyguy/3167111 to your computer and use it in GitHub Desktop.
Debugging with UIAlertViews
#define POP_ALERT(title, msg) [[[[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]autorelease] show]
/*
Usage:
POP_ALERT(@"Title Here", @"Message Here");
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment