Created
July 24, 2012 00:16
-
-
Save chunkyguy/3167111 to your computer and use it in GitHub Desktop.
Debugging with UIAlertViews
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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