The Alert is shown however the clicked event never fires. The OK or Cancel buttons remain lit and nothing happens.
public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
{
var x = new UIAlertView ("Media Download", "Download this file? ", null, "Cancel", "OK");
x.Show ();
x.Clicked += (sender, buttonArgs) => {
Console.WriteLine("Pressed!"); /// THIS NEVER HAPPENS
}
}
This worked fine in iOS6 :(