Skip to content

Instantly share code, notes, and snippets.

@ayushoriginal
Created June 24, 2019 14:09
Show Gist options
  • Save ayushoriginal/e524ea17a74f06ebc7c38c5659fabf85 to your computer and use it in GitHub Desktop.
Save ayushoriginal/e524ea17a74f06ebc7c38c5659fabf85 to your computer and use it in GitHub Desktop.
ok_alert
var okAlertController = UIAlertController.Create(title_text, body_text, UIAlertControllerStyle.Alert);
//Add Action
okAlertController.AddAction(UIAlertAction.Create("OK", UIAlertActionStyle.Default, null));
// Present Alert
PresentViewController(okAlertController, true, null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment