Skip to content

Instantly share code, notes, and snippets.

@hlxwell
Created March 25, 2013 06:24
Show Gist options
  • Save hlxwell/5235250 to your computer and use it in GitHub Desktop.
Save hlxwell/5235250 to your computer and use it in GitHub Desktop.
UIAlertView+Block Usage
UIAlertView *alertView = [UIAlertView alertViewWithTitle:@"Alert" message:@"Are you sure?"];
[alertView addButtonWithTitle:@"Yes" handler:^{
// YES
}];
[alertView addButtonWithTitle:@"No" handler:^{
// NO
}];
[alertView show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment