iOS 13 introduced some changes to the UISegmentedControl including a really nice animation when switching the selected segment. However I\'m noticing that it\'s not displaying t
In Xamarin.iOS this worked for me:
class MySegmentedControl : UISegmentedControl { int insertedIndex = 0; public override void InsertSubview(UIView view, nint atIndex) { base.InsertSubview(view, atIndex); if (insertedIndex == 2 || insertedIndex == 3) view.Hidden = true; insertedIndex++; } }