Hi, Im using TabbedRenderer with ViewDidAppear and this code:
if (TabBar.Items != null)
{
var items = TabBar.Items;
foreach (var t in items)
{
t.TitlePositionAdjustment = new UIOffset(0, -14);
var txtFont = new UITextAttributes() { Font = UIFont.SystemFontOfSize(18) };
t.SetTitleTextAttributes(txtFont, UIControlState.Normal);
}
}
base.ViewDidAppear(animated);
This is no longer working on iOS 15 devices, any ideas? I just want the title text appear a little higher and bigger...
Thanks and best regards
Chris

