Skip to content

Instantly share code, notes, and snippets.

@katsuhide
Last active December 19, 2015 10:09
Show Gist options
  • Save katsuhide/5938783 to your computer and use it in GitHub Desktop.
Save katsuhide/5938783 to your computer and use it in GitHub Desktop.
Alert Pop Up
NSString *errorMsg = @"Are you sure you want to delete this Upload Rule?";
if(errorMsg.length != 0){
NSAlert *alert = [ NSAlert alertWithMessageText: @"hoge"
defaultButton: @"OK" // 1
alternateButton: @"Cancel" // 0
otherButton: nil // -1
informativeTextWithFormat: @"%@", errorMsg];
NSLog(@"%ld",[alert runModal]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment