Skip to content

Instantly share code, notes, and snippets.

@RameshAran
Created September 17, 2016 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RameshAran/37144e9d02ff5a6268b2b2e45267f1a5 to your computer and use it in GitHub Desktop.
Save RameshAran/37144e9d02ff5a6268b2b2e45267f1a5 to your computer and use it in GitHub Desktop.
- (void)showActionSheetWithTwoButtons {
UIAlertController *alertView = [UIAlertController alertControllerWithTitle:@"ActionSheet!"
message:@"This is an ActionSheet."
preferredStyle:UIAlertControllerStyleActionSheet];
[alertView addAction:[UIAlertAction actionWithTitle:@"ok"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
NSLog(@"action - %@", action.title);
}]];
[alertView addAction:[UIAlertAction actionWithTitle:@"Cancel"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
NSLog(@"action - %@", action.title);
}]];
[self presentViewController:alertView animated:YES completion:^{
NSLog(@"alertView shown!");
}];
}
@RameshAran
Copy link
Author

Create an Actionsheet with two buttons.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment