Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created March 2, 2014 11:52
Show Gist options
  • Save a-v-ebrahimi/9305474 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/9305474 to your computer and use it in GitHub Desktop.
iOS : Show alert
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title"
message:@"prompt"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Ok", nil ];
alert.tag = 10;
[alert show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment