I'm new to MonoTouch, but I used the convenient ToolbarItems property on the UIViewController to show some buttons on the toolbar, and now I'm looking for a way to set BadgeValue on some of these buttons.
It seems that the UIBarButtonItem property that you see on UITabBarItem from the UITabBarItem , so the question is: how to set the icon value for UIBarButtonItem in the ToolbarItems collection?
UIBarButtonItem item1 = new UIBarButtonItem() { Title = "test" };
source share