Skip to content

Instantly share code, notes, and snippets.

@h2rd
Created January 11, 2013 14:33
Show Gist options
  • Select an option

  • Save h2rd/4511079 to your computer and use it in GitHub Desktop.

Select an option

Save h2rd/4511079 to your computer and use it in GitHub Desktop.
Alert in object-c
NSAlert *alert = [[NSAlert alloc] init];
[alert setAlertStyle:NSInformationalAlertStyle];
[alert setMessageText:@"Message text"];
[alert setInformativeText:@"Info text"];
[alert runModal];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment