How do I change background color of UITabItem when item is selected

前端 未结 11 1462
暖寄归人
暖寄归人 2021-02-01 19:15

I would like a different background color when the user selects a tab bar item than when it is unselected.

11条回答
  •  没有蜡笔的小新
    2021-02-01 19:47

    Please refer below URL's.

    Changing Tint / Background color of UITabBar

    How To Change Tab bar color in Xcode

    hope this will help you..

    try this to change tabbar item color but it only work in ios5.

    if ([UITabBar instancesRespondToSelector:@selector(setSelectedImageTintColor:)])
    {
        [tabBarController.tabBar setSelectedImageTintColor:[UIColor redColor]];
    }
    

提交回复
热议问题