Skip to content

Instantly share code, notes, and snippets.

@srkirkland
Created October 8, 2015 05:51
Show Gist options
  • Save srkirkland/c9b8b629a8167a0e67b0 to your computer and use it in GitHub Desktop.
Save srkirkland/c9b8b629a8167a0e67b0 to your computer and use it in GitHub Desktop.
replacement for action sheet
var alertController = UIAlertController.Create (null, null, UIAlertControllerStyle.Alert);
alertController.AddAction (UIAlertAction.Create ("Cancel", UIAlertActionStyle.Cancel, null));
alertController.AddAction (UIAlertAction.Create ("Take photo", UIAlertActionStyle.Default, null));
alertController.AddAction (UIAlertAction.Create ("Take photo", UIAlertActionStyle.Default, null));
this.PresentViewController (alertController, true, null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment