gpt4 book ai didi

iPhone:设置 SelectedTabIndex 不会突出显示 TabItem

转载 作者:行者123 更新时间:2023-12-03 21:20:08 26 4
gpt4 key购买 nike

当我在代码中设置 uitabbarcontroller 的 SelectedTabIndex 时,它会忠实地更改显示的选项卡,但 TabItem 不会突出显示。我必须手动触摸它才能将 TabItem 变为“蓝色”并突出显示。

有没有办法强制突出显示 TabItem?

我们已经尝试过:

    public override void ViewWillAppear (bool animated)
{
base.ViewWillAppear (animated);
this.SelectedIndex = 0;
this.SelectedViewController = this.ViewControllers[0];
this.TabBar.SetNeedsDisplay ();
}

最佳答案

我找到了解决方案。在我的 subview 中,必须将 UITabItem 设置为启用:

    UITabBarItem t; 
public override UITabBarItem TabBarItem
{
get {
if(t==null)
t= new UITabBarItem ("Baha'i", UIImage.FromFile ("Images/Unity_in_Diversity.png"), 0);
t.Enabled=true;
return t;
}
set { base.TabBarItem = value; }
}

关于iPhone:设置 SelectedTabIndex 不会突出显示 TabItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5636307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com