Skip to content

Instantly share code, notes, and snippets.

@Duraiamuthan
Created November 5, 2014 16:05
Show Gist options
  • Save Duraiamuthan/d771eef5fa23d9cba2e8 to your computer and use it in GitHub Desktop.
Save Duraiamuthan/d771eef5fa23d9cba2e8 to your computer and use it in GitHub Desktop.
OSX alerview
NSAlert *alert=[NSAlert alertWithMessageText:@"message" defaultButton:@"Ok" alternateButton:@"Cancel" otherButton:nil informativeTextWithFormat:@"InformativeText"];
NSInteger i=[alert runModal];
if (i==NSAlertDefaultReturn) {
NSLog(@"Ok pressed");
}
else{
NSLog(@"Else pressed");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment