Hello,
I think it's possible but couldnt find any sample.
I create a menü like this
- UIAlertController actionSheetAlert = UIAlertController.Create("Menu", null, UIAlertControllerStyle.ActionSheet);
- actionSheetAlert.AddAction(UIAlertAction.Create("option 1"), UIAlertActionStyle.Default, (action) => Console.WriteLine("Item one pressed.")));
- // Display the menu
- this.PresentViewController(actionSheetAlert, true, null);
How can add images left to item titles?